This repository is just a collection of python scripts which I wrote while learning to use Tensorflow.
Description of some of the scripts :
- linearreg.py : Implemented linear regression with Tensorflow .
- logisticreg.py : Implemented logistic regression with Tensorflow .
- digit_recog1.py : A simple Multi-Layer perceptron without any hidden layer for digit recognition. The accuracy was about 91% .
- digit_recog2.py : A simple Deep neural network (Convolution Neural Network) with dropout and multiple hidden layers. The accuracy was about 96% .