Views
No views yet
1# recommended
2huggingface-cli download jozhang97/ismc-600m-2024-12 --local-dir /path/to/save/ismc
3
4# alternative
5git clone https://huggingface.co/jozhang97/ismc-600m-2024-12from esm.models.esmc import ESMC
model = ESMC.from_pretrained("esmc_600m").to("cuda")
state_dict = torch.load('/path/to/ismc_600m_2024_12_v0.pth')
model.load_state_dict(state_dict)