Readdata PDF
Readdata PDF
md
1 # TensorFlow Examples
2
3 This tutorial was designed for easily diving into TensorFlow, through examples. For
readability, it includes both notebooks and source codes with explanation.
4
5 It is suitable for beginners who want to find clear and concise examples about
TensorFlow. Besides the traditional 'raw' TensorFlow implementations, you can also
find the latest TensorFlow API practices (such as `layers`, `estimator`, `
dataset`, ...).
6
7 **Update (07/25/2018):** Add new examples (GBDT, Word2Vec) + TF1.9 compatibility! (TF
v1.9+ recommended).
8
9 *If you are using older TensorFlow version (0.11 and under), please take a [look here](
https://github.com/aymericdamien/TensorFlow-Examples/tree/0.11).*
10
11 ## Tutorial index
12
13 #### 0 - Prerequisite
14 - [Introduction to Machine Learning](https://github.com/aymericdamien/TensorFlow-
Examples/blob/master/notebooks/0_Prerequisite/ml_introduction.ipynb).
15 - [Introduction to MNIST Dataset](https://github.com/aymericdamien/TensorFlow-Examples/
blob/master/notebooks/0_Prerequisite/mnist_dataset_intro.ipynb).
16
17 #### 1 - Introduction
18 - **Hello World** ([notebook](https://github.com/aymericdamien/TensorFlow-Examples/
blob/master/notebooks/1_Introduction/helloworld.ipynb)) ([code](https://github.com/
aymericdamien/TensorFlow-Examples/blob/master/examples/1_Introduction/helloworld.py)).
Very simple example to learn how to print "hello world" using TensorFlow.
19 - **Basic Operations** ([notebook](https://github.com/aymericdamien/TensorFlow-
Examples/blob/master/notebooks/1_Introduction/basic_operations.ipynb)) ([code](https://
github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/1_Introduction/
basic_operations.py)). A simple example that cover TensorFlow basic operations.
20 - **TensorFlow Eager API basics** ([notebook](https://github.com/aymericdamien/
TensorFlow-Examples/blob/master/notebooks/1_Introduction/basic_eager_api.ipynb)) ([
code](https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/
1_Introduction/basic_eager_api.py)). Get started with TensorFlow's Eager API.
21
22 #### 2 - Basic Models
23 - **Linear Regression** ([notebook](https://github.com/aymericdamien/TensorFlow-
Examples/blob/master/notebooks/2_BasicModels/linear_regression.ipynb)) ([code](https://
github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/
linear_regression.py)). Implement a Linear Regression with TensorFlow.
24 - **Linear Regression (eager api)** ([notebook](https://github.com/aymericdamien/
TensorFlow-Examples/blob/master/notebooks/2_BasicModels/linear_regression_eager_api.
ipynb)) ([code](https://github.com/aymericdamien/TensorFlow-Examples/blob/master/
examples/2_BasicModels/linear_regression_eager_api.py)). Implement a Linear Regression
using TensorFlow's Eager API.
25 - **Logistic Regression** ([notebook](https://github.com/aymericdamien/TensorFlow-
Examples/blob/master/notebooks/2_BasicModels/logistic_regression.ipynb)) ([code](
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/
2_BasicModels/logistic_regression.py)). Implement a Logistic Regression with TensorFlow.
26 - **Logistic Regression (eager api)** ([notebook](https://github.com/aymericdamien/
TensorFlow-Examples/blob/master/notebooks/2_BasicModels/logistic_regression_eager_api.
ipynb)) ([code](https://github.com/aymericdamien/TensorFlow-Examples/blob/master/
examples/2_BasicModels/logistic_regression_eager_api.py)). Implement a Logistic
Regression using TensorFlow's Eager API.
27 - **Nearest Neighbor** ([notebook](https://github.com/aymericdamien/TensorFlow-
Examples/blob/master/notebooks/2_BasicModels/nearest_neighbor.ipynb)) ([code](https://
github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/
nearest_neighbor.py)). Implement Nearest Neighbor algorithm with TensorFlow.
28 - **K-Means** ([notebook](https://github.com/aymericdamien/TensorFlow-Examples/blob/
master/notebooks/2_BasicModels/kmeans.ipynb)) ([code](https://github.com/aymericdamien/
TensorFlow-Examples/blob/master/examples/2_BasicModels/kmeans.py)). Build a K-Means
classifier with TensorFlow.
29 - **Random Forest** ([notebook](https://github.com/aymericdamien/TensorFlow-Examples/
blob/master/notebooks/2_BasicModels/random_forest.ipynb)) ([code](https://github.com/
aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/random_forest.
py)). Build a Random Forest classifier with TensorFlow.
30 - **Gradient Boosted Decision Tree (GBDT)** ([notebook](https://github.com/
aymericdamien/TensorFlow-Examples/blob/master/notebooks/2_BasicModels/
gradient_boosted_decision_tree.ipynb)) ([code](https://github.com/aymericdamien/
TensorFlow-Examples/blob/master/examples/2_BasicModels/gradient_boosted_decision_tree.
Page: 1 / 4
README.md
Page: 2 / 4
README.md
Page: 3 / 4
README.md
Page: 4 / 4