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

Aymeric Damien 897fe2c243 Update dynamic_rnn.py 8 年之前
examples 897fe2c243 Update dynamic_rnn.py 8 年之前
notebooks 1f58605650 fixed shape errors in the rnn model comments (#43) 8 年之前
LICENSE 4fbed84d52 change project layout 9 年之前
README.md 4cce9f6690 added dynamic RNN 8 年之前
input_data.py 908f7cc24c added mnist data script 9 年之前
multigpu_basics.py 530dc64989 added basic operations with multi GPU 9 年之前

README.md

TensorFlow Examples

TensorFlow Tutorial with popular machine learning algorithms implementation. This tutorial was designed for easily diving into TensorFlow, through examples.

It is suitable for beginners who want to find clear and concise examples about TensorFlow. For readability, the tutorial includes both notebook and code with explanations.

Tutorial index

0 - Prerequisite

  • Introduction to Machine Learning (notebook)
  • Introduction to MNIST Dataset (notebook)

1 - Introduction

2 - Basic Models

3 - Neural Networks

4 - Utilities

  • Save and Restore a model (notebook) (code)
  • Tensorboard - Graph and loss visualization (notebook) (code)
  • Tensorboard - Advanced visualization (code)

5 - Multi GPU

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, for a quick description of that dataset, you can check this notebook.

Official Website: http://yann.lecun.com/exdb/mnist/

More Examples

The following examples are coming from TFLearn, a library that provides a simplified interface for TensorFlow. You can have a look, there are many examples and pre-built operations and layers.

Basics

Computer Vision

Natural Language Processing

Reinforcement Learning

Notebooks

Extending Tensorflow

  • Layers. Use TFLearn layers along with Tensorflow.
  • Trainer. Use TFLearn trainer class to train any Tensorflow graph.
  • Built-in Ops. Use TFLearn built-in operations along with Tensorflow.
  • Summaries. Use TFLearn summarizers along with Tensorflow.
  • Variables. Use TFLearn variables along with Tensorflow.

Dependencies

tensorflow
numpy
matplotlib
cuda
tflearn (if using tflearn examples)

For more details about TensorFlow installation, you can check TensorFlow Installation Guide