-
Notifications
You must be signed in to change notification settings - Fork 165
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
Option to use a smaller model for faster computation #20
Comments
This sounds like a good plan to me. A few things to note:
|
I'm inclined to downloading all models from GH if possible, because including the same model for every release is a waste/abuse of PyPI storage.
|
OK, sounds good. Let me know if you need my help with any of this, cheers. |
jongwook
added a commit
that referenced
this issue
May 31, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the model capacity multiplier is fixed to 32, but this can be adjusted as a trade-off between the computation time and accuracy. Roughly speaking, the number of parameters is quadratic to this multiplier.
The one that is deployed on https://marl.github.io/crepe uses model multiplier 4, and still achieves quite comparable performance:
(note that these numbers are on MedleyDB v1 and not comparable to what's reported in the paper)
We'd like to have an option to select a smaller model, for faster calculation in the cost of slightly lower accuracy.
I'd suggest the following options for specifying the model capacity.
--model-capacity full
--model-capacity large
--model-capacity medium
--model-capacity small
--model-capacity tiny
Currently the size of the PyPI archive is 57.7 MB, very close to the 60 MB limit, and it's only possible to add the
tiny
for immediate upload to PyPI. Requesting quota increase on PyPI is possible, but it seems quite difficult and not so sure if they will allow us the increase.We can alternatively put the models on a separate branch in this repo, and have the code download the models during the installation or first use.
Let me do the former first (adding
tiny
), and figure out how to add the other three later.The text was updated successfully, but these errors were encountered: