Views
No views yet
1from huggingface_hub import hf_hub_download 2import torch 3 4# Download model 5path = hf_hub_download("Exocore/ExocoreV1", "Exocore.pt") 6ckpt = torch.load(path, map_location="cpu") 7 8print(f"Model loaded: {ckpt['config']}")