Thanks for sharing wonderful work CALM!
Problem
The pytorch_model.bin file for CALM-M on HuggingFace is corrupted. CALM-L and CALM-XL seems work fine.
import torch
from huggingface_hub import hf_hub_download
path = hf_hub_download('cccczshao/CALM-M', 'pytorch_model.bin')
torch.load(path, map_location='cpu')
# RuntimeError: PytorchStreamReader failed reading zip archive: failed finding central directory
Cause (Maybe)
The file size matches HuggingFace metadata (1,748,107,520 bytes), so it's not a download issue. The ZIP End of Central Directory (EOCD) signature is missing — the file might be truncated during upload.
Coud you please re-upload pytorch_model.bin for CALM-M ?
Best regards.