You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can help by translating the remaining tutorials or reviewing the ones that have already been translated. You can also help by translating to other languages.
139
141
142
+
It is a very big job to translate all the tutorials, so you should just start with Tutorials #01, #02 and #03-C which are the most important for beginners.
143
+
144
+
### New Videos
145
+
146
+
You are also very welcome to record your own YouTube videos in other languages. It is strongly recommended that you get a decent microphone because good sound quality is very important. I used `vokoscreen` for recording the videos and the free [DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve/) for editing the videos.
147
+
140
148
## Forks
141
149
142
150
See the [selected list of forks](forks.md) for community modifications to these tutorials.
143
151
144
-
## Downloading
152
+
## Installation
153
+
154
+
There are different ways of installing and running TensorFlow. This section describes how I did it
155
+
for these tutorials. You may want to do it differently and you can search the internet for instructions.
156
+
157
+
If you are new to using Python and Linux then this may be challenging
158
+
to get working and you may need to do internet searches for error-messages, etc.
159
+
It will get easier with practice. You can also run the tutorials without installing
160
+
anything by using Google Colab, see further below.
145
161
146
162
Some of the Python Notebooks use source-code located in different files to allow for easy re-use
147
163
across multiple tutorials. It is therefore recommended that you download the whole repository
@@ -159,30 +175,16 @@ This also makes it easy to update the tutorials, simply by executing this comman
159
175
160
176
git pull
161
177
162
-
### Zip-File
178
+
### Download Zip-File
163
179
164
180
You can also [download](https://github.com/Hvass-Labs/TensorFlow-Tutorials/archive/master.zip)
165
181
the contents of the GitHub repository as a Zip-file and extract it manually.
166
182
167
-
## Installation
168
-
169
-
There are different ways of installing and running TensorFlow. This section describes how I did it
170
-
for these tutorials. You may want to do it differently and you can search the internet for instructions.
171
-
172
-
If you are new to using Python and Linux, etc. then this may be challenging
173
-
to get working and you may need to do internet searches for error-messages, etc.
174
-
It will get easier with practice.
175
-
176
-
### Python Version 3.5 or Later
177
-
178
-
These tutorials were developed on Linux using **Python 3.5 / 3.6** (the [Anaconda](https://www.continuum.io/downloads) distribution) and [PyCharm](https://www.jetbrains.com/pycharm/).
179
-
180
-
There are reports that Python 2.7 gives error messages with these tutorials. Please make sure you are using **Python 3.5** or later!
181
-
182
183
### Environment
183
184
184
-
After installing [Anaconda](https://www.continuum.io/downloads), you should create a
I use [Anaconda](https://www.continuum.io/downloads) because it comes with many Python
186
+
packages already installed and it is easy to work with. After installing Anaconda,
187
+
you should create a [conda environment](http://conda.pydata.org/docs/using/envs.html)
186
188
so you do not destroy your main installation in case you make a mistake somewhere:
187
189
188
190
conda create --name tf python=3
@@ -213,6 +215,12 @@ in a terminal:
213
215
Note that the GPU-version of TensorFlow also requires the installation of various
214
216
NVIDIA drivers, which is not described here.
215
217
218
+
### Python Version 3.5 or Later
219
+
220
+
These tutorials were developed on Linux using **Python 3.5 / 3.6** (the [Anaconda](https://www.continuum.io/downloads) distribution) and [PyCharm](https://www.jetbrains.com/pycharm/).
221
+
222
+
There are reports that Python 2.7 gives error messages with these tutorials. Please make sure you are using **Python 3.5** or later!
223
+
216
224
## How To Run
217
225
218
226
If you have followed the above installation instructions, you should
0 commit comments