Views
No views yet
1from huggingface_hub import hf_hub_download 2import torch 3 4path = hf_hub_download( 5 repo_id = "Seeyou200/mcq-bilstm-model", 6 filename = "best_lstm_model.pt" 7) 8checkpoint = torch.load(path, weights_only=False)