-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LPCNET Python code for inference with Tacotron2 feature #10
Comments
@alokprasad good questions. The other params(18 dims) of input features is computed by |
@MlWoo will wait for the changes , meanwhile will try myself . |
@alokprasad I has implement the code. You can view the branch cmake. Hope you can find bugs and we can fix together. And I will close the issue in a week. |
@MlWoo Thanks for the patch , will try and update you. |
Hi, is there any update about this issue? I tried building taco2+lpcnet but facing this issue in cmake CMakeFiles/test_vec.dir/library/src/test_vec.c.o: In function |
@raikarsagar Sorry to forget to push the cmake files to the repo. plz update it and run it again |
Thanks for the update. The inference time is too slow with test_lpcnet.py compared to c version. There shouldn't be much performance degradation as we are calling the native c function for lpc_from_cepstrum(). Am I correct? or is there any further change to be made? |
@raikarsagar it is not correct. Calling the native c function for lpc_from_cepstrum() will NOT lead to performance degradation. But |
I share the code that I made to use the c code from python. Add this lines to MakeFile
(Add test_lpcnet.so to line 6)
Generate shared library
Create a python file to consume shared library
The time are similar to execute c code. |
@MlWoo what changes will required for test_lpcnet.py to make it work with features from tacotron2 ?
The text was updated successfully, but these errors were encountered: