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

https://github.com/ahkarami/playing-with-tensorflow

This repository shows my history of TensorFlow learning.
https://github.com/ahkarami/playing-with-tensorflow

deep-learning tensorflow tensorflow-examples tensorflow-experiments tensorflow-tutorials

Last synced: about 2 months ago
JSON representation

This repository shows my history of TensorFlow learning.

Awesome Lists containing this project

README

          

# Playing-with-TensorFlow
This repository shows my history of TensorFlow learning.


Logo

## Content:
### Elementary
00. [Introduction to MNIST dataset](https://github.com/ahkarami/Playing-with-TensorFlow/blob/master/00_MNISTDataset.py) - Download and visualize MNIST dataset
01. [TensorFlow basic](https://github.com/ahkarami/Playing-with-TensorFlow/blob/master/01_TensorFlowBasic.py) - Session / Constants / Variables / Sharing variables / Placeholder
02. [Feed forward neural network](https://github.com/ahkarami/Playing-with-TensorFlow/blob/master/02_FeedForwardNeuralNetwork.py) - Neural network for MNIST dataset classification
03. [CNN Model 1st](https://github.com/ahkarami/Playing-with-TensorFlow/blob/master/03_CNN1.py) - A simple _ConvNet_ classification example for MNIST dataset
04. [Support GPU](https://github.com/ahkarami/Playing-with-TensorFlow/blob/master/04_SupportGPU.py) - A simple code which determine whether your installed TensorFlow supports GPU or not
05. [Save and restore tensor variables](https://github.com/ahkarami/Playing-with-TensorFlow/blob/master/05_SaveRestoreModel.py) - A simple example for ave & restore variables in TensorFlow