tensorflow-wavenet
tensorflow-wavenet copied to clipboard
A TensorFlow implementation of DeepMind's WaveNet paper
Hi all, There's something I'm confused with 'how to make meaningful sentences with different voices'. From Deepmind blog, we can hear the samples of meaningful speech with different voices. So,...
As per issue #83, it was discussed that input is provided as raw waveform in 1st layer and using single channel floating point tensor . * Why can't we extend...
We simplified the ibab's code using tf.layers.conv1d The fast generation works even when filter_width >=2 or batch_size >=1. You can find the implementation in our [repository](https://github.com/hccho2/wavenet-tf.layers.conv1d)
Hey there, I'm doing my masters degree on Sonic Arts and trying to come up with a good thesis on applications of machine learning on audio. I've been playing around...
Hi there. Ive used the code from this repo but altered it to form input-output mappings rather than be a generative network as I want to test if its possible...
I'm wondering why we use **time_to_batch + causal_conv + batch_to_time** in **ops.py**, rather than [**tf.layers.conv1d**](https://www.tensorflow.org/versions/r1.8/api_docs/python/tf/layers/conv1d) with **dilation_rate**>1. Is it because it computes faster or old versions of tf don't support?
Hello, I had some questions: 1. Is it possible to reduce the time needed per steps? Currently it takes my computer about 40 sec/steps. I have an i7 Skylake and...
Now, I want to reference the implement of global conditioning in your code to edit my wavenet code in order to implement multi-speakers. But after reading your code, I am...
On the first training, the algorithm fails due to being unable to create the necessary files
Hi, I used the code directly, and I got something just like noise. I executed "python train.py" , and then "python generate.py". Finally I got that file in zip. Thanks!...