@@ -161,23 +161,23 @@ I'm currently running this tutorial with **Python 3** on **Anaconda**
161161
162162## Setting the Environment
163163
164- In this repository, files to re-create virtual env with ` conda ` are provided for Linux and OSX machines, namely
165- ` deep-learning.yml ` , ` deep-learning-osx.yml ` , respectively.
164+ In this repository, files to re-create virtual env with ` conda ` are provided for Linux and OSX systems,
165+ namely ` deep-learning.yml ` and ` deep-learning-osx.yml ` , respectively.
166166
167- To re-create the virtual environments (on Linux):
167+ To re-create the virtual environments (on Linux, for example ):
168168
169169``` shell
170170conda env create -f deep-learning.yml
171171```
172172
173- On OSX machines , just change the filename, accordingly.
173+ For OSX, just change the filename, accordingly.
174174
175175### Installing Tensorflow
176176
177- To date ` tensorflow ` comes in two different packages, namely ` tensorflow ` and ` tensorflow-gpu ` , whether you want to install it with
178- CPU-only/ GPU support, respectively.
177+ To date ` tensorflow ` comes in two different packages, namely ` tensorflow ` and ` tensorflow-gpu ` , whether you want to install
178+ the framework with CPU-only or GPU support, respectively.
179179
180- For this reason, ` tensorflow ` has ** not** been included in the provided conda environment files and has to be installed separately.
180+ For this reason, ` tensorflow ` has ** not** been included in the conda envs and has to be installed separately.
181181
182182#### Tensorflow for CPU only:
183183
@@ -191,23 +191,25 @@ pip install tensorflow
191191pip install tensorflow-gpu
192192```
193193
194- ** Note** : NVIDIA Drivers and CuDNN ** must** be installed and configured before hand. Please refer to official
194+ ** Note** : NVIDIA Drivers and CuDNN ** must** be installed and configured before hand. Please refer to the official
195195[ Tensorflow documentation] ( https://www.tensorflow.org/install/ ) for further details.
196196
197197
198198#### Important Note:
199199
200- All the code provided** in this tutorial is able to run even if ` tensorflow ` is ** not** installed, but using ` theano ` as the (default) backend!
200+ All the code provided+ in this tutorial can run even if ` tensorflow ` is ** not** installed, and so using ` theano ` as the (default) backend!
201201
202- And ** this ** is exactly the power of Keras!
202+ ___ ** This ** is exactly the power of Keras!___
203203
204204Therefore, installing ` tensorflow ` is ** not** stricly required!
205205
206- ** : Apart from the __ 1 .2 Introduction to Tensorflow __ tutorial, of course.
206+ + : Apart from the ** 1 .2 Introduction to Tensorflow ** tutorial, of course.
207207
208208### Configure Keras with tensorflow
209209
210- By default, Keras is configured with ` theano ` as a backend. If you want to use ` tensorflow ` instead, these are the simple steps to follow:
210+ By default, Keras is configured with ` theano ` as backend.
211+
212+ If you want to use ` tensorflow ` instead, these are the simple steps to follow:
211213
2122141 ) Create the ` keras.json ` (if it does not exist):
213215
@@ -226,6 +228,7 @@ touch $HOME/.keras/keras.json
226228}
227229```
228230
231+ 3 ) Verify it is properly configured:
229232
230233``` python
231234! cat ~ / .keras/ keras.json
0 commit comments