Predicting average yearly income based on satellite imagery using CNNs.
Built for the Stanford ACMLab Fall 2020 project by Clare Chua, Ryan Chi, Tejas Narayanan, Nathan Kim, and Zander Lack (Team CRouToNZ).
A predict(filepath)
function has been provided in predict.py
. An example of how to use
this function is in how_to_predict.py
, and has also been copied here:
import predict
print(predict.predict('data/imagery/14_2801_6536.jpg'))
Add the following files/folders to the data
folder:
imagery/
test_imagery/
16zpallnoagi.csv
worldelev.npy
ziplatlon.csv
These files are not included in the Git repository because they are too large.
Next, ensure the most recent versions of the following libraries are installed:
numpy==1.19.2
torch==1.6.0
Pillow==8.0.0
pandas==1.1.3
To set up a virtual environment for this project:
- Navigate to the project directory in the terminal.
python3 -m venv venv/
. This will create a virtual environment folder.source venv/bin/activate
. This will activate the virtual environment.(venv)
should appear at the beginning of the terminal prompt.pip install numpy torch pillow pandas
. This will install the most recent versions of Numpy, PyTorch, and Pillow (Python Image Library).
After following these steps the first time, the only required step is to
source venv/bin/activate
to activate the environment.