Stefan Murawski
Stefan Murawski
I second this! At the moment if you package this using something like Pyinstaller then it will redownload the model every start new because pyinstaller cleans up the temporary directory...
@toonday This Pull Request implements some functionality for loading models to a manually selectable location: https://github.com/xinjli/allosaurus/pull/28 This has been integrated in release 1.0.1 of allosaurus.
I see, I've added some logic to our program to do exactly that. I need to test some longer files to see how accurate this is. This way the progress...
I see, this happens because we are looking for specific file endings depending on the architecture: ``` if platform.system() == "Darwin": if download["name"].endswith("-osx.zip"): release_url = download["browser_download_url"] else: if download["name"].endswith("-win32.zip"): release_url...
Ah yes, we are always writing to the same registry entry with the Installer. https://github.com/steveway/papagayo-ng/blob/master/papagayo-ng.nsi I guess we need to modify our script to also insert the version information. The...
Just a reminder, there are python bindings available already: #29
Sure that might be useful for some. Also, some of those AI models seem to be trained on the Timit phoneme set. Those are 61 phonemes. https://catalog.ldc.upenn.edu/docs/LDC93S1/ Having a preset...
That is strange, I just tested it and it works here. Can you check in the settings.ini what you have set for audio_output? It should be: audio_output=new You can find...
Hi, I've been testing the PySide6 bindings for this and just came across the same problem. Unfortunately it doesn't seem that it can be as easily fixed from the user...