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

make it work with TensorFlow>=2.0 and librosa>=0.7

Open lene opened this issue 3 years ago • 2 comments

lene avatar May 20 '22 12:05 lene

I have tested these changes and it do fixes the project issues for newer versions of TF. I vote this PR to be merged 👍

brunolcarli avatar Mar 18 '23 21:03 brunolcarli

tf.histogram_summary should be changed to tf.summary.histogram within model.py.

librosa.output.write_wav(filename, y, sample_rate) should be replaced with sf.write(filename, y, sample_rate, "PCM_24") with sf as the python soundfile import within "generate.py"

Also requirements.txt should be updated

triscuitcircuit avatar Jun 08 '23 21:06 triscuitcircuit