├── .gitignore ├── LICENSE ├── README.md ├── adabound.py ├── assets └── mnist_acc.png ├── logs ├── adabound │ └── events.out.tfevents.1552196804.KOZISTR ├── adagrad │ └── events.out.tfevents.1551702045.KOZISTR ├── adam │ └── events.out.tfevents.1551701853.KOZISTR ├── amsbound │ └── events.out.tfevents.1552197385.KOZISTR ├── momentum │ └── events.out.tfevents.1551702320.KOZISTR └── sgd │ └── events.out.tfevents.1551702195.KOZISTR └── mnist_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /adabound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/adabound.py -------------------------------------------------------------------------------- /assets/mnist_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/assets/mnist_acc.png -------------------------------------------------------------------------------- /logs/adabound/events.out.tfevents.1552196804.KOZISTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/logs/adabound/events.out.tfevents.1552196804.KOZISTR -------------------------------------------------------------------------------- /logs/adagrad/events.out.tfevents.1551702045.KOZISTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/logs/adagrad/events.out.tfevents.1551702045.KOZISTR -------------------------------------------------------------------------------- /logs/adam/events.out.tfevents.1551701853.KOZISTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/logs/adam/events.out.tfevents.1551701853.KOZISTR -------------------------------------------------------------------------------- /logs/amsbound/events.out.tfevents.1552197385.KOZISTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/logs/amsbound/events.out.tfevents.1552197385.KOZISTR -------------------------------------------------------------------------------- /logs/momentum/events.out.tfevents.1551702320.KOZISTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/logs/momentum/events.out.tfevents.1551702320.KOZISTR -------------------------------------------------------------------------------- /logs/sgd/events.out.tfevents.1551702195.KOZISTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/logs/sgd/events.out.tfevents.1551702195.KOZISTR -------------------------------------------------------------------------------- /mnist_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kozistr/AdaBound-tensorflow/HEAD/mnist_test.py --------------------------------------------------------------------------------