DEPRECATED - TensorFlow + Python 2.7 + TensorBoard + JupyterLab + Pandas & more in a docker ...
3.1K
PLEASE NOTE THAT THIS REPOSITORY IS DEPRECATED, WON'T BE LONGER DEVELOPED,IT HAS BEEN REPLACED BY THIS NEW SET OF REPOSITORIES:
A Docker image for ARM devices with Tensorflow 1.8.0 an open source software library for numerical computation using data flow graphs that will let you play and learn distinct Machine Learning techniques over JupyterLab an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and explanatory text. Computational Narratives as the Engine of Collaborative Data Science. All this under Python 2.7 language. There is very similar image based on Python 3.4 instead of 2.7 elswork/rpi-tensorflow-py3.
Be aware! You should read carefully the usage documentation of every tool!
Build for arm32v7 architecture
docker build -t elswork/rpi-tensorflow:latest .
Build for amd64 architecture
docker build -t elswork/rpi-tensorflow:latest \
--build-arg WHL_URL=https://storage.googleapis.com/tensorflow/linux/cpu/ \
--build-arg WHL_FILE=tensorflow-1.8.0-cp27-none-linux_x86_64.whl .
In order everyone could take full advantages of the usage of this docker container, I'll describe my own real usage setup. For amd64 architecture replace latest by amd64 tag.
docker run -d -p 8888:8888 elswork/rpi-tensorflow:latest
A more complex sample:
docker run -d -p 8888:8888 -p 0.0.0.0:6006:6006 \
--restart=unless-stopped elswork/rpi-tensorflow:latest
Point your browser to http://localhost:8888
First time you open it, you should provide a Token to log on you cand find it with this command:
docker logs container_name
With the second example you can run TensorBoard executing this command in the container:
tensorboard --logdir=path/to/log-directory --host=0.0.0.0
And pointing your browser to http://localhost:6006
Content type
Image
Digest
Size
337.1 MB
Last updated
over 8 years ago
docker pull elswork/rpi-tensorflow