All Projects → npuichigo → Voicenet

npuichigo / Voicenet

Licence: apache-2.0
Speech synthesis platform based on tensorflow and sonnet

Projects that are alternatives of or similar to Voicenet

Textnormalizationcoveringgrammars
Covering grammars for English and Russian text normalization
Stars: ✭ 46 (-23.33%)
Mutual labels:  makefile, text-to-speech
Wireguard Go Docker
Wireguard docker image
Stars: ✭ 57 (-5%)
Mutual labels:  makefile
Antelope contrib
Contributed code for the Antelope Environmental Monitoring System from BRTT, Inc. (http://www.brtt.com)
Stars: ✭ 52 (-13.33%)
Mutual labels:  makefile
Pycon Job Fair
Data on PyCon 2014 job fair participants and their positions on remote work.
Stars: ✭ 56 (-6.67%)
Mutual labels:  makefile
Mylinux
myLinux is a small UNIX like OS for embedded systems based on Westermo NetBox
Stars: ✭ 53 (-11.67%)
Mutual labels:  makefile
Drake Examples
Example workflows for the drake R package
Stars: ✭ 57 (-5%)
Mutual labels:  makefile
Cs224n Gpu That Talks
Attention, I'm Trying to Speak: End-to-end speech synthesis (CS224n '18)
Stars: ✭ 52 (-13.33%)
Mutual labels:  text-to-speech
Portfolio
Create a beautiful Portfolio using GitHub pages
Stars: ✭ 59 (-1.67%)
Mutual labels:  makefile
Sdl manual
The Manual for writing Games in Perl using SDL. Part of TPF grant.
Stars: ✭ 57 (-5%)
Mutual labels:  makefile
Build
A simple makefile-based build system that I split from ELFE / XL
Stars: ✭ 55 (-8.33%)
Mutual labels:  makefile
Gba vscode basic
A 'simple' Game Boy Advance development setup using Visual Studio Code
Stars: ✭ 55 (-8.33%)
Mutual labels:  makefile
Kubernetes Cicd
Demonstration of a Kubernetes-centric CI/CD workflow
Stars: ✭ 54 (-10%)
Mutual labels:  makefile
Vipertemplate
Viper Template makes the process of generation of the Viper's modules easier and faster.
Stars: ✭ 57 (-5%)
Mutual labels:  makefile
Docker Unifi Controller
unifi controller runnning in docker
Stars: ✭ 53 (-11.67%)
Mutual labels:  makefile
Nativefiledialog
A tiny, neat C library that portably invokes native file open and save dialogs.
Stars: ✭ 1,100 (+1733.33%)
Mutual labels:  makefile
Docker Janus
Debian based docker image for https://github.com/meetecho/janus-gateway
Stars: ✭ 52 (-13.33%)
Mutual labels:  makefile
Gba Examples
Stars: ✭ 54 (-10%)
Mutual labels:  makefile
Linux Kernel Programming
Linux Kernel Programming, published by Packt
Stars: ✭ 53 (-11.67%)
Mutual labels:  makefile
Yolo
Kill a random process
Stars: ✭ 59 (-1.67%)
Mutual labels:  makefile
Tutorials
🎓 Practical beginner-level introductions to using different tools and technologies, with a focus on their application in the newsroom
Stars: ✭ 59 (-1.67%)
Mutual labels:  makefile

Voicenet: Speech Synthesis Platform

Overview

Voicenet is an open source speech synthesis framework based on tensorflow and sonnet. This flexible architecture lets you validate your new neural network based acoustic model quickly in your experiments, and owing to the deployment capability of tensorflow, we think it's easy to deploy new algorithms and experiments online for serving.

Installation Instructions

We have simplify the dependencies of voicenet, so you will need to install tensorflow>=v1.7.0 and progress only.

pip install -r requirements.txt

Getting Started

  1. Clone this repository with git clone https://github.com/npuichigo/voicenet.git
  2. Go to voicenet/tools and run the script compile_tools.sh to compile third_party tools
  3. Go to voicenet/egs/slt_arctic/ and run the script run.sh
  4. For your own dataset, just make a new directory under voicenet/egs/, copy voicenet/egs/local and voicenet/egs/run.sh to the new workspace

WARNING:You should change the training parameters for your own dataset. For the purpose of demostration, batch_size is set to one in voicenet/egs/slt_arctic/.

IMPORTANT:We remove the dependency of sonnet in the latest version of voicenet. The main reason is that we want to keep track of tensorflow's rapid updates. In addition, starting in tensorflow 1.2, dataset iterator is added for reading data into tensorflow. In using tensorflow's dataset api, iterators of dataset_train and dataset_valid can be merged into one iterator, which can be switched between different datasets conveniently, so variable reuse is no longer needed.

model = LSTM(...)
iterator = tf.contrib.data.Iterator.from_structure(
    dataset_train.batched_dataset.output_types,
    dataset_train.batched_dataset.output_shapes)
input, _ = iterator.get_next()
output = model(input)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].