Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/nlintz/TensorFlow-Tutorials

Simple tutorials using Google's TensorFlow Framework
https://github.com/nlintz/TensorFlow-Tutorials

Last synced: 2 months ago
JSON representation

Simple tutorials using Google's TensorFlow Framework

Lists

README

        

# TensorFlow-Tutorials
[![Build Status](https://travis-ci.org/nlintz/TensorFlow-Tutorials.svg?branch=master)](https://travis-ci.org/nlintz/TensorFlow-Tutorials)
[![Codacy Badge](https://api.codacy.com/project/badge/grade/2d3ed69cdbec4249ab5c2f7e4286bb8f)](https://www.codacy.com/app/hunkim/TensorFlow-Tutorials)

Introduction to deep learning based on Google's TensorFlow framework. These tutorials are direct ports of
Newmu's [Theano Tutorials](https://github.com/Newmu/Theano-Tutorials).

***Topics***
* [Simple Multiplication](00_multiply.py)
* [Linear Regression](01_linear_regression.py)
* [Logistic Regression](02_logistic_regression.py)
* [Feedforward Neural Network (Multilayer Perceptron)](03_net.py)
* [Deep Feedforward Neural Network (Multilayer Perceptron with 2 Hidden Layers O.o)](04_modern_net.py)
* [Convolutional Neural Network](05_convolutional_net.py)
* [Denoising Autoencoder](06_autoencoder.py)
* [Recurrent Neural Network (LSTM)](07_lstm.py)
* [Word2vec](08_word2vec.py)
* [TensorBoard](09_tensorboard.py)
* [Save and restore net](10_save_restore_net.py)
* [Generative Adversarial Network](11_gan.py)

***Dependencies***
* TensorFlow 1.0 alpha
* Numpy
* matplotlib