Skip to content

ermaker/dockerfile-keras

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

dockerfile-keras

Dockerized Keras with Theano and TensorFlow.

Get Started

Run an example:

docker run --rm -it ermaker/keras sh -c 'curl -sSL https://github.com/fchollet/keras/raw/master/examples/mnist_mlp.py | python'

Run Keras with TensorFlow: (See this for more information)

docker run --rm -it -e KERAS_BACKEND=tensorflow ermaker/keras sh -c 'curl -sSL https://github.com/fchollet/keras/raw/master/examples/mnist_mlp.py | python'

Check the backend:

docker run --rm -it -e KERAS_BACKEND=tensorflow ermaker/keras python -c "from keras import backend; print backend._BACKEND"

Run your script:

docker run --rm -it -v $(pwd)/YOUR_SCRIPT.py:/YOUR_SCRIPT.py:ro ermaker/keras python YOUR_SCRIPT.py

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published