albertaparicio / tfg-voice-conversion

Deep Learning-based Voice Conversion system
GNU General Public License v3.0
120 stars 39 forks source link

What is or where is ”interpolate.py“? #2

Closed HudsonHuang closed 7 years ago

HudsonHuang commented 7 years ago

Thank you for your great work. And, I run data/training/seq2seq_align_training.sh . And got an error showing that it needs a interpolate.py which is not in my system. Could u show me how to get the interpolate.py?

Here is the code in data/training/seq2seq_aligntraining.sh: # Interpolate lfo and vf data python $(which interpolate.py) \ --f0_file ${DIR_VOC}/${DIR_SPK}/${FILENAME}.lf0.dat \ --vf_file ${DIR_VOC}/${DIRSPK}/${FILENAME}.vf.dat \ --no-uv

run with error of: Processing SM2/200040 Unknown option: -- usage: python [option] ... [-c cmd | -m mod | file | -] [arg] ... Try `python -h' for more information.

I search for interpolate.py and found scipy has such a file ,but without parameter of f0_file vffile and no-uv how to get the code work?THX

albertaparicio commented 7 years ago

Dear @HudsonHuang , The interpolate.py file belongs to the ahoproc-tools repository: https://github.com/santi-pdp/ahoproc_tools/blob/master/ahoproc_tools/interpolate.py Originally, I put it in a folder of my $PATH

HudsonHuang commented 7 years ago

It works,thank you so much!