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

https://github.com/bryanlimy/mnist-classification-with-tensorflow


https://github.com/bryanlimy/mnist-classification-with-tensorflow

classification tensorflow

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

## MNIST Classification with Tensorflow Estimator

#### How to run
- Using Gradient Descent Optimizer: ```> python trainer.py```
- Using Adam Optimizer: ```> python trainer.py --model=autoencoder```

#### TensorBoard
```> python -m tensorflow.tensorboard --logdir=tmp/training```

#### Graph
- Gradient Descent Optimizer
![alt text](images/gradient_descent.png "Gradient Descent Optimizer model")
- Adam Optimizer
![alt text](images/adam.png "Adam Optimizer")