File size: 794 Bytes
5b012b2
e7fe2fe
55a1e35
e7fe2fe
55a1e35
5a7adae
55a1e35
 
af253f7
 
 
 
55a1e35
e7fe2fe
55a1e35
 
 
 
e7fe2fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## 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")
```