Class project submission
https://www.kaggle.com/c/data-science-bowl-2017
https://www.kaggle.com/gzuidhof/data-science-bowl-2017/full-preprocessing-tutorial
A minimal setup you need to get running.
sudo apt-get update
sudo apt-get install git python3 python3-pip
sudo -H pip3 install virutualenvwrappermkdir ~/projects && cd ~/projects
git clone https://github.gatech.edu/kds17/kds17.git
mkvirtualenv kds17
echo "proj_name=\$(basename \$VIRTUAL_ENV)
cd ~/projects/\$proj_name" >> ~/.venv/postactivate
deactivate
workon kds17
pip install -r requirements.txt
pythonIf you do not have CUDA and cuDNN installed then pip install will fail with tensorflow-gpu. Just install the regular one in your virtual environment:
pip install tensorflowimport cv2
import tensorflow as tfIf you did not receive any errors while importing the packages then you should be good to go!
The code in this project is licensed under MIT license.