tensorflow-wavenet icon indicating copy to clipboard operation
tensorflow-wavenet copied to clipboard

A TensorFlow implementation of DeepMind's WaveNet paper

Results 102 tensorflow-wavenet issues
Sort by recently updated
recently updated
newest added

Hi! I've been trying to understand the network and there is [this matter](https://stats.stackexchange.com/questions/311696/is-googles-wavenet-architecture-computing-a-bunch-of-values-that-it-will-never) that I can't understand. I posted it as [a question in stackexchange](https://stats.stackexchange.com/questions/311696/is-googles-wavenet-architecture-computing-a-bunch-of-values-that-it-will-never). Feel free to answer over...

In 'tensorflow-wavenet/wavenet/ops.py', the last row of the function 'mu_law_encode' displays (signal + 1) / 2 * mu + 0.5, why use this formula to quantize signal?

I modified train.py by changing SILENCE_THRESHOLD to 0.001 and modified also in generate.py. Other than that, no other changes. But I did use my own .wav files. Using a saved...

Hi, @ibab please mention the accuracy of the your model with VCTK dataset

Take this simple example: ```python import tensorflow as tf import numpy as np import wavenet n_batches = 1 n_samples = 8 quantisation = 1 x = tf.placeholder(tf.float32, (n_batches, n_samples, quantisation))...

Hello, I am trying to run the wavenet network according to the instructions. I get below warning for all the .wave files and after pre-processing I get the error. I...

The current implementation computes the short-time RMSE amplitude, applies a given threshold on its value (the units are raw amplitude), and trims the audio from the beginning until a frame...

strategy

My tensorboard is blank. I use conda, not tensorflow installed using pip. I thought at first that it was my tensorflow and tensorboard version issues. I dealt with it for...

I have generated some wav files by using wav_seed option. Then I wonder whether or not the wav file is able to be generated by text . Would you help...