COMP 551 - Applied Machine Learning (Winter 2021)
- KNN and Decision Tree on cancer data
- Naive Bayes and Linear Regression on text data
- Multilayer Perceptron on MNIST
- YOLO: Unified, Real-Time Object Detection Reproducibility Challenge
- Create your ssh public and private key.
- Upload your public ssh key to GCP
ssh -i path_to_private_key username@34.74.0.92
. The IP address of the VM is static.
NOTE: IP of VM changed since mini-project-3
Each mini-project has its own virtual environment
cd
into the mini-project you want to work with- Create your virtualenv:
python -m venv venv
source venv/bin/activate
, you should seevenv
in front of your terminal prompt- Install project dependencies:
pip install -r requirements.txt
- If you installed new dependencies:
pip freeze > requirements.txt
Note: Not needed for mini-project 4. We will use the conda base package from GCP Deep Learning VM
nohup python script_name.py &
- Close your terminal and go Zzzz