Machine Learning Club Environment Set up - GarrettHaley/SelfDrivingRCCar GitHub Wiki

Machine Learning Club Docker Set Up

Whats included

  1. Ubuntu 16.04 LTS
  2. Python 3.5.2
  3. Tensorflow 1.6.0
  4. Keras 2.1.5
  5. PyTorch 0.3.1
  6. OpenCV 3.4.1
  7. Jupyter Notebook
  8. Numpy, Scipy, Scikit Learn, Scikit Image, Pandas, Matplotlib, Pillow
  9. Caffe
  10. Java JDK
  11. PyCocoTools (MS COCO dev kit)

Install Docker

https://docs.docker.com/install/

Running the Docker Image

docker run -it -p 8888:8888 -p 6006:6006 -v ~/:/host waleedka/modern-deep-learning

Running Jupyter Notebook

cd /host jupyter notebook --allow-root

Alternatively, combine the previous two steps and start Jupyter Notebook without logging into the container:

docker run -it -p 8888:8888 -p 6006:6006 -v ~/:/host waleedka/modern-deep-learning jupyter notebook --allow-root /host