This tutorial was designed for easily diving into TensorFlow, through examples. For readability, it includes both notebooks and source codes with explanation.

aymericdamien 104c4de9f3 added testing as requested by issue #2 il y a 9 ans
examples 104c4de9f3 added testing as requested by issue #2 il y a 9 ans
notebooks 6080970b85 fix folder name il y a 9 ans
LICENSE 4fbed84d52 change project layout il y a 9 ans
README.md 21e2454f8a minor fix il y a 9 ans
Setup_TensorFlow.md 3f7255a66b minor fix il y a 9 ans
input_data.py 908f7cc24c added mnist data script il y a 9 ans
multigpu_basics.py 530dc64989 added basic operations with multi GPU il y a 9 ans

README.md

TensorFlow Examples

Code examples for some popular machine learning algorithms, using TensorFlow library. This tutorial is designed to easily dive into TensorFlow, through examples. It includes both notebook and code with explanations.

Tutorial index

1 - Introduction

2 - Basic Classifiers

3 - Neural Networks

4 - Multi GPU

5 - User Interface (Tensorboard)

Dependencies

tensorflow
numpy
matplotlib
cuda (to run examples on GPU)

For more details about TensorFlow installation, you can check Setup_TensorFlow.md

Dataset

Some examples require MNIST dataset for training and testing. Don't worry, this dataset will automatically be downloaded when running examples (with input_data.py). MNIST is a database of handwritten digits, with 60,000 examples for training and 10,000 examples for testing. (Website: http://yann.lecun.com/exdb/mnist/)

Other tutorials are coming soon....