mirror of
https://github.com/donnemartin/data-science-ipython-notebooks.git
synced 2024-03-22 13:30:56 +08:00
Add tensor-flow-exercises README and docker install.
This commit is contained in:
parent
4e5ae7c177
commit
21c2fbabdc
6
deep-learning/tensor-flow-exercises/Dockerfile
Normal file
6
deep-learning/tensor-flow-exercises/Dockerfile
Normal file
|
@ -0,0 +1,6 @@
|
|||
FROM b.gcr.io/tensorflow/tensorflow:latest
|
||||
MAINTAINER Vincent Vanhoucke <vanhoucke@google.com>
|
||||
RUN pip install scikit-learn
|
||||
ADD *.ipynb /notebooks/
|
||||
WORKDIR /notebooks
|
||||
CMD ["/run_jupyter.sh"]
|
12
deep-learning/tensor-flow-exercises/README.md
Normal file
12
deep-learning/tensor-flow-exercises/README.md
Normal file
|
@ -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
|
Loading…
Reference in New Issue
Block a user