You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it should be considered to have a requirements file, as a couple libraries need to be pinned to specific versions to function (mostly for training so far), whereas the current method installs (sometimes incompatible) newest versions. The one that specifically brings this to mind is librosa, which must be pinned around 0.9.2 instead of 0.10 due to the changing of the number of required arguments in 0.10. This causes the training to fail to start.
pip install librosa==0.9.2 fixes the error, just putting it on here for anyone else running into the issue.
The text was updated successfully, but these errors were encountered:
I think it should be considered to have a requirements file, as a couple libraries need to be pinned to specific versions to function (mostly for training so far), whereas the current method installs (sometimes incompatible) newest versions. The one that specifically brings this to mind is librosa, which must be pinned around 0.9.2 instead of 0.10 due to the changing of the number of required arguments in 0.10. This causes the training to fail to start.
pip install librosa==0.9.2 fixes the error, just putting it on here for anyone else running into the issue.
The text was updated successfully, but these errors were encountered: