File size: 369 Bytes
d61c0d5 4899ca0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
lat_mean = # ADD HERE
lat_std = # ADD HERE
lon_mean = # ADD HERE
lon_std = # ADD HERE
# TO RUN:
from huggingface_hub import hf_hub_download
import torch
repo_id = "cis-5190-final-fall24/ImageToGPSproject_model"
filename = "final_model.pth"
model_path = hf_hub_download(repo_id=repo_id, filename=filename)
model_test = torch.load(model_path)
model_test.eval() |