└── README.md /README.md: -------------------------------------------------------------------------------- 1 | ## Keras + Tensorflow tutorials on Floyd 2 | 3 | The Keras tutorials by [leriomaggio](https://github.com/leriomaggio/deep-learning-keras-tensorflow) 4 | is a great place to start learning Keras. It comes with structured Jupyter notebooks teaching Keras basics 5 | all the way to advanced concepts. 6 | 7 | You can start by cloning the project repository and initializing a floyd project. 8 | 9 | ```bash 10 | git clone https://github.com/leriomaggio/deep-learning-keras-tensorflow 11 | cd deep-learning-keras-tensorflow 12 | floyd init deep-learning-keras-tensorflow 13 | ``` 14 | 15 | If you don't have floyd already installed, you can run: 16 | ```bash 17 | pip install -U floyd-cli 18 | floyd login 19 | ``` 20 | 21 | ### GPU Mode 22 | 23 | You can run this project on a GPU instance on Floyd with a single command: 24 | 25 | ```bash 26 | floyd run --env keras --gpu --mode jupyter 27 | ``` 28 | 29 | The output should contain the url to the jupyter notebook: 30 | ```bash 31 | Path to jupyter notebook: https://www.floydhub.com:8000/2sN82HNJhwsqUm5QbWtqUi 32 | ``` 33 | 34 | You can now open the Jupyter notebook url in your browser and start running the notebooks. 35 | 36 | ### Other Options 37 | 38 | If you want to run this on a CPU instance: 39 | 40 | ```bash 41 | floyd run --env keras --mode jupyter 42 | ``` 43 | 44 | And if you want a Python 2 environment, you can change it in the command line: 45 | 46 | ```bash 47 | floyd run --env keras:py2 --gpu --mode jupyter 48 | ``` 49 | 50 | The full list of supported enviroments is [here](http://docs.floydhub.com/home/environments/). 51 | --------------------------------------------------------------------------------