Is pytorch_model-00003-of-00006.bin model file damaged?

#1
by chouisbo - opened

When loading model parameters, occurs error due to the pytorch_model-00003-of-00006.bin model file.
20241111-111743.jpg
I check the file sha256sum, it is equal to the code from hugging face.

Thank you for bringing this to our attention! We’ve fixed the file. Please try downloading the model again.

You should now be able to load the model following instructions in the model card:

from transformers import AutoModelForCausalLM, AutoTokenizer
device = "cuda" # the device to load the model onto
model = AutoModelForCausalLM.from_pretrained(
    "Uni-SMART/SciLitLLM1.5-14B",
    torch_dtype="auto",
    device_map="auto"
)

Please let us know if you any questions!

Sign up or log in to comment