From 21c2fbabdca291d153228b220b15c8a7006b500a Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sun, 27 Dec 2015 07:20:46 -0500 Subject: [PATCH] Add tensor-flow-exercises README and docker install. --- deep-learning/tensor-flow-exercises/Dockerfile | 6 ++++++ deep-learning/tensor-flow-exercises/README.md | 12 ++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 deep-learning/tensor-flow-exercises/Dockerfile create mode 100644 deep-learning/tensor-flow-exercises/README.md diff --git a/deep-learning/tensor-flow-exercises/Dockerfile b/deep-learning/tensor-flow-exercises/Dockerfile new file mode 100644 index 0000000..59ae4ab --- /dev/null +++ b/deep-learning/tensor-flow-exercises/Dockerfile @@ -0,0 +1,6 @@ +FROM b.gcr.io/tensorflow/tensorflow:latest +MAINTAINER Vincent Vanhoucke +RUN pip install scikit-learn +ADD *.ipynb /notebooks/ +WORKDIR /notebooks +CMD ["/run_jupyter.sh"] diff --git a/deep-learning/tensor-flow-exercises/README.md b/deep-learning/tensor-flow-exercises/README.md new file mode 100644 index 0000000..b857c7f --- /dev/null +++ b/deep-learning/tensor-flow-exercises/README.md @@ -0,0 +1,12 @@ +Exercises +=========================================================== + +Building the Docker container +----------------------------- + + docker build -t $USER/exercises . + +Running the container +--------------------- + + docker run -p 8888:8888 -it --rm $USER/exercises