ValueError: The state dictionary of the model you are trying to load is corrupted. Are you sure it was properly saved?

#3
by secain - opened

sha256 for my model file:9c74a0fabc96993d671aa8550eec103bd31ec62a5c50c570b41ec628a8985b3c
same with the repo

4141 base_model_expected_keys = list(model_to_load.state_dict().keys())
4142 if any(key in expected_keys_not_prefixed and key not in base_model_expected_keys for key in loaded_keys):
-> 4143 raise ValueError(
4144 "The state dictionary of the model you are trying to load is corrupted. Are you sure it was "
4145 "properly saved?"
4146 )

what's wrong?

Sign up or log in to comment