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

Aymeric Damien 3c319dd24b Merge pull request #31 from aymericdamien/v2 9 年之前
examples 998ba46963 Examples major update 9 年之前
notebooks 959b573a88 update notebooks 9 年之前
LICENSE 4fbed84d52 change project layout 9 年之前
README.md 9e2e6dee59 Update README.md 9 年之前
Setup_TensorFlow.md f5e3be5a50 Update Setup_TensorFlow.md 9 年之前
input_data.py 908f7cc24c added mnist data script 9 年之前
multigpu_basics.py 530dc64989 added basic operations with multi GPU 9 年之前

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 Models

3 - Neural Networks

4 - Utilities

5 - Multi GPU

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

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.

Computer Vision

Natural Language Processing

Notebooks

Dependencies

tensorflow
numpy
matplotlib
cuda
tflearn (if using tflearn examples)

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

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/)