https://github.com/kakshay21/ml-tensorflow
MNIST- Machine Learning with tensorflow
https://github.com/kakshay21/ml-tensorflow
mnist-dataset python-2 tensorflow
Last synced: 4 months ago
JSON representation
MNIST- Machine Learning with tensorflow
- Host: GitHub
- URL: https://github.com/kakshay21/ml-tensorflow
- Owner: kakshay21
- Created: 2016-12-29T13:23:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-06T18:01:48.000Z (almost 8 years ago)
- Last Synced: 2025-01-09T10:49:23.800Z (6 months ago)
- Topics: mnist-dataset, python-2, tensorflow
- Language: Python
- Homepage:
- Size: 10.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Tesorflow
"**TensorFlow** is an open source software library for numerical computation using
data flow graphs. The graph nodes represent mathematical operations, while
the graph edges represent the multidimensional data arrays (tensors) that flow
between them. This flexible architecture lets you deploy computation to one
or more CPUs or GPUs in a desktop, server, or mobile device without rewriting
code. TensorFlow also includes TensorBoard, a data visualization toolkit."
-- words from tensorflow documentation
## Installation
*See [Installing TensorFlow](https://www.tensorflow.org/get_started/os_setup.html) for instructions on how to install our release binaries or how to build from source.*#### *Try your first TensorFlow program*
```shell
$ python
```
```python
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> sess.run(hello)
'Hello, TensorFlow!'
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> sess.run(a + b)
42
>>> sess.close()
```
#### see the file in action [gettingstarted.py](https://github.com/kakshay21/ML-tensorflow/blob/master/gettingstarted.py)## Let's begin with MNIST
I would recommend to follow [this guide](https://www.tensorflow.org/get_started/mnist/beginners)The guide is for begineers and really helpful to follow next.
Now Let's see the 5 layered neural network [here](https://github.com/kakshay21/ML-tensorflow/blob/master/mnistv2.py)
Now on increasing one more hidden layer, [check this out](https://github.com/kakshay21/ML-tensorflow/blob/master/mnistv3.py)