1import torch
2from huggingface_hub import hf_hub_download
3
4# Download model
5model_path = hf_hub_download(repo_id="asher577/thirds_reallyhighbeta_0.005", filename="pytorch_model.bin")
6config_path = hf_hub_download(repo_id="asher577/thirds_reallyhighbeta_0.005", filename="config.json")
7
8# Load (requires the SparseGPT model class from this repo)
9state_dict = torch.load(model_path)