-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Running Lightning upgrades permanently causes SHA256 checks to fail in future #449
Comments
@kyleboddy you probably solved this already, but the sha256 check is run 'externally' by the library against the baked in s3 url. This is why the checksum fails after upgrade. Either the check needs to be skipped, or preferably updated against the updated checkpoint: Line 46 in 06e30b2
|
So no fix? |
I removed |
yes, but this comes after running that permanent update |
1 RUN ( with activated you venv) python -m pytorch_lightning.utilities.upgrade_checkpoint ../../.cache/torch/whisperx-vad-segmentation.bin 2 RUN 3 Modify ( cat ../venv/lib/python3.12/site-packages/whisperx/vad.py) and in 19 line change from: to: and try to re-run-code |
In the warnings, if you actually run this command to upgrade the loaded checkpoint:
Then in the future you will have SHA256 model checksum issues:
Then you have to delete the models in
~/.cache/torch
and it will run fine.Unsure what the workaround is if you want to permanently upgrade.
The text was updated successfully, but these errors were encountered: