Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.26 KB

README.md

File metadata and controls

28 lines (21 loc) · 1.26 KB

Assignment Solutions for the Udacity Deep Learning class with TensorFlow

Course information can be found at https://www.udacity.com/course/deep-learning--ud730

##AWS Instance Setup I setup a Public AMI on Amazon AWS to work through the tutorial.

  • AMI Name: DeepMind DeepQ Atari 11_25
  • Instance Type: g2.2xlarge
  • Software: GPU Configured TensorFlow, PyCharm, Website accessible Jupyter Notebook, CUDA Toolkit 8, OpenCV, Git, and Python

Enter the following in Advanced Details -> User Data during Step 3 Configure Instance when launching an EC2 server.

#!/bin/bash
echo "ubuntu:password" | chpasswd
cd /home/ubuntu/jupyter
git clone https://github.com/chrisbll971/udacity_deep_learning_course.git
chown -R ubuntu:ubuntu /home/ubuntu/jupyter/udacity_deep_learning_course
jupyter notebook --certfile=/home/ubuntu/certs/mycert.pem --no-browser --ip="*" > /tmp/ipynb.out 2>&1 &

This will make the Jupyter notebook accessible via web at https://ec2instanceip:8888/tree automatically on launch. It will also make the instance open to Windows Remote Desktop. The first time you login via Windows Remote Desktop it will fail, but the second time it will work.

Windows Remote Desktop

  • Username: ubuntu
  • Password: password