- 19 Jul, 2019 1 commit
-
-
Chris Mattmann authored
Fix for TF-models #7216: CIFAR-10 tutorial for multi-GPU fails because full shape isn't passed to prefetch_queue contributed by mattmann. (#7217)
-
- 18 Jul, 2019 1 commit
-
-
Chris Mattmann authored
Fix for #7225: CIFAR-10 eval fails with error TypeError: Input 'predictions' of 'InTopKV2' Op has type float16 that contributed by mattmann. (#7227)
-
- 08 Jul, 2019 1 commit
-
-
Yang Liu authored
* Bug fix of cifar10_eval.py line 120: changed from eval_data = FLAGS.eval_data == 'test' to: eval_data = FLAGS.eval_data comment: the original code assigns 'true' to eval_data, when the script is being used to evaluate networks on the evaluation set, it DOES NOT load the evaluation set as intended, but actually loads the trainning set (line 105 of cifar10_input.py). * Remove one line that was an artifact of issue.
-
- 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)`
-
- 11 Jul, 2018 1 commit
-
-
ricoms authored
-
- 19 Jun, 2018 1 commit
-
-
hospitalization authored
-
- 05 May, 2018 1 commit
-
-
Joel Shor 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.
-
- 02 Mar, 2018 1 commit
-
-
Karmel Allison authored
-
- 08 Feb, 2018 1 commit
-
-
Toby Boyd authored
The change you added did not work with python2, it does not have encoding in .log. This fixes it. feel free to test on Python3. I tested python2 and I am really sue this works fine for python3. Good catch. sorry for not having it fixed earlier.
-
- 07 Feb, 2018 1 commit
-
-
newcoder authored
change cPickle to pickle for python3 specify encoding='latin1' when call pickle.load()
-
- 31 Jan, 2018 1 commit
-
-
frreiss authored
-
- 24 Jan, 2018 1 commit
-
-
Neal Wu 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
-
- 10 Jan, 2018 1 commit
-
-
Yaroslav Bulatov authored
-
- 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
-
- 02 Nov, 2017 1 commit
-
-
Marianne Linhares Monteiro authored
-
- 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
- 15 Sep, 2017 2 commits
- 06 Sep, 2017 2 commits
- 28 Aug, 2017 1 commit
-
-
Toby Boyd authored
-