All Projects → floydhub → tensorflow-notebooks-examples

floydhub / tensorflow-notebooks-examples

Licence: MIT license
Tensorflow Notebook Examples and Tutorials

Programming Languages

Jupyter Notebook
11667 projects

TensorFlow Examples

Forked from https://github.com/aymericdamien/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.

Note: If you are using older TensorFlow version (before 0.12), please have a look here

Tutorial index

0 - Prerequisite

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

1 - Introduction

2 - Basic Models

3 - Neural Networks

  • Multilayer Perceptron (notebook)
  • Convolutional Neural Network (notebook)
  • Recurrent Neural Network (LSTM) (notebook)
  • Bidirectional Recurrent Neural Network (LSTM) (notebook)
  • Dynamic Recurrent Neural Network (LSTM) (code)
  • AutoEncoder (notebook)

4 - Utilities

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

5 - Multi GPU

  • Basic Operations on multi-GPU (notebook)

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.

Tutorials

  • TFLearn Quickstart. Learn the basics of TFLearn through a concrete machine learning task. Build and train a deep neural network classifier.

Basics

Computer Vision

Natural Language Processing

Reinforcement Learning

Others

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 1.0alpha
numpy
matplotlib
cuda
tflearn (if using tflearn examples)

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

Note

This repo needs updating for the latest version of Tensorflow

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].