liukaily's picture
Update README.md
4899ca0 verified
|
raw
history blame
369 Bytes
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()