Views
No views yet
1import torch
2from huggingface_hub import hf_hub_download
3
4checkpoint_path = hf_hub_download(
5 repo_id="batmangiaicuuthegioi/gae-checkpoints",
6 filename="checkpoints/ogbl-collab_GCN_collab-depth-sweep-5.pt"
7)
8
9state_dict = torch.load(checkpoint_path)