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.
- Host: GitHub
- URL: https://github.com/ahkarami/playing-with-tensorflow
- Owner: ahkarami
- Created: 2018-03-07T17:35:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-23T16:07:35.000Z (almost 8 years ago)
- Last Synced: 2025-01-13T01:42:48.424Z (over 1 year ago)
- Topics: deep-learning, tensorflow, tensorflow-examples, tensorflow-experiments, tensorflow-tutorials
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Playing-with-TensorFlow
This repository shows my history of TensorFlow learning.
## 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