conda env create -f environment.yml
conda activate sem-deep-learning
mkdir model_dir saved_models
Use this to host the files online: https://www.station307.com/#/ - will make the files available to stream from host machine over network until browser tab is closed, very handy in a classroom setting.
mkdir -p data/metmuseum
wget <station307-url> -O data/metmuseum/MetObjects.csv
- Download the MNIST as .jpg dataset from the station307 url
wget <station307-url> -O mnist.zip
- Extract to data dir
mkdir -p data/MNIST/raw
unzip mnist.zip -d data/MNIST
mv data/MNIST/trainingSet/trainingSet/* data/MNIST/raw
- Remove unneeded files
rm -r mnist.zip data/MNIST/testS* data/MNIST/trainingS*
- Create filepath to label mapping:
cd data/MNIST && chmod +x create_csv.sh
./create_csv.sh raw