## Hello! You can perform inference with our Resnet model using the Resnet_inference.ipynb notebook located in this repo. Please open the notebook and navigate to the INPUTS tab, then follow the steps below in order to perform inference on your images. ## 1. Replace the latitude and longitude mean and std with your own. The latitude and longitude mean and std values are from our training data. ```python # Latitude and longitude mean and std loaded from training data lat_mean = 39.95164323706967 lat_std = 0.0006429139045198418 lon_mean = -75.19132342959699 lon_std = 0.0006982237294765668 ``` ## 2. Load your images for inference Your images will be stored as 'dataset_test' in the code. ```python dataset_test = load_dataset("{YOUR ORGANIZATION NAME}/{DATASET NAME}", split="test") ```