Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.99 KB

README.md

File metadata and controls

39 lines (27 loc) · 1.99 KB

Overview

This repository is meant to facilitate an interactive quick introduction to deep learning. If you have stumbled upon this repo on your own, there are other better resources for you on the internet.

@Datanauts add your questions, thoughts, concerns, resources in this community wiki

Setup

  • Install Docker https://docs.docker.com/engine/installation/

  • Clone this repository

    git clone --recursive [email protected]:alexisylchan/introdl.git

  • In the introdl directory, build your Docker image. This step may take 1-2 hours

    • If you will be running on a CPU-based tensorflow

      sudo docker build -t <your_user_name>/introdl -f Dockerfile.cpu .

    • If you will be running on a GPU-based tensorflow

      sudo docker build -t <your_user_name>/introdl -f Dockerfile.gpu .

  • Install Google Chrome (I had issues running Jupyter notebook on Firefox within the Docker container)

  • Run bash in your Docker container

    sudo docker run -it -p 8888:8888 -p 6006:6006 <your_user_name>/introdl bash

  • Start Jupyter within the Docker container

    jupyter notebook

Attribution

Thank you to the following resources:

(Please let me know if you would like to be added to this list!)