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

https://github.com/ashryaagr/ann-tensorflow

Artificial Neural Networks with Tensorflow
https://github.com/ashryaagr/ann-tensorflow

convolutional-neural-networks tensorflow

Last synced: about 1 month ago
JSON representation

Artificial Neural Networks with Tensorflow

Awesome Lists containing this project

README

        

Deep-Learning with Tensorflow
---------------------------------------------------------------------------------------------------------------------

This repository is just a collection of python scripts which I wrote while learning to use Tensorflow.


Description of some of the scripts :
1. linearreg.py : Implemented linear regression with Tensorflow .

2. logisticreg.py : Implemented logistic regression with Tensorflow .

3. digit_recog1.py : A simple Multi-Layer perceptron without any hidden layer for digit recognition. The accuracy was about 91% .

4. digit_recog2.py : A simple Deep neural network (Convolution Neural Network) with dropout and multiple hidden layers. The accuracy was about 96% .