- 22 Jun, 2019 1 commit
-
-
George K authored
* restored missing function * missing import * missing imports * updated tutorial link * recovered _print_download_progress func * change default train with float16 instead of float32 accuracy * test disable func call * redundant function call, currently data is pulled automatically in * optimized imports * optimized imports
-
- 22 Apr, 2019 1 commit
-
-
pierrot0 authored
* TF cifar10 cnn tutorial: use tensorflow-datasets to load the data. * Load cifar10 in memory. * Fix imports * More import fixes
-
- 01 Nov, 2018 1 commit
-
-
cheerss authored
the number of batches per epoch also depends on the number of gpus. it should be `num_batches_per_epoch = (cifar10.NUM_EXAMPLES_PER_EPOCH_FOR_TRAIN / FLAGS.batch_size / FLAGS.num_gpus)`
-
- 19 Jun, 2018 1 commit
-
-
hospitalization authored
-
- 11 Apr, 2018 1 commit
-
-
Igor Ganichev authored
While the original code works fine in practice, it technically allows gradient application and moving average update to happen in any order. This causes the behavior to deviate from pure mathematical specifications.
-
- 29 Mar, 2018 1 commit
-
-
Zi Yin authored
-
- 13 Mar, 2018 1 commit
-
-
chengpohi authored
We can directly get `batch_size` by `images.get_shape()[0]` in `inference` method, since maybe we will not use `cifar.inputs` method to build the input.
-
- 31 Jan, 2018 1 commit
-
-
frreiss authored
-
- 12 Jan, 2018 1 commit
-
-
Steven Hickson authored
Updated cifar10_input.py to put the data augmentation into a name_scope named data_augmentation so the tensorboard graph is easier to read and more meaningful
-
- 05 Jan, 2018 1 commit
-
-
Neal Wu authored
-
- 21 Dec, 2017 2 commits
- 15 Nov, 2017 1 commit
-
-
Martin Kersner authored
tf.contrib.framework.get_or_create_global_step -> tf.train.get_or_create_global_step
-
- 13 Oct, 2017 1 commit
-
-
Seb Bro authored
CIFAR website is now using https. Since urllib does not follow the http to https redirection and thus never retrieves any data, the data URL needs an update.
-
- 26 Sep, 2017 1 commit
-
-
Olivia authored
-
- 22 Sep, 2017 6 commits
- 21 Sep, 2017 3 commits
- 16 Jun, 2017 1 commit
-
-
Andrew Selle authored
-
- 09 Jun, 2017 1 commit
-
-
Neal Wu authored
-
- 08 Jun, 2017 5 commits
- 15 May, 2017 1 commit
-
-
Junwei Pan authored
-
- 16 Mar, 2017 2 commits
- 14 Mar, 2017 2 commits
- 08 Mar, 2017 1 commit
-
-
Alexandr Baranezky authored
2. Fixed accuracy when calcuting logs more than 10 steps
-
- 04 Mar, 2017 1 commit
-
-
Yimeng Zhang authored
-
- 14 Feb, 2017 1 commit
-
-
piper authored
-
- 13 Feb, 2017 1 commit
-
-
Jongwook Choi authored
Without the new variable_scope, creating apply_gradient_op raises an error that additional moving average or slot variables could not be created. This is because of the 'leaky reuse' of variable scope, so we correct the problem by explicitly introducing a new variable scope. Related issues: tensorflow/models#901, tensorflow/tensorflow#6220
-