1. 22 Jun, 2019 1 commit
    • George K's avatar
      readme source url and import optimization (#7084) · adc27172
      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
      adc27172
  2. 22 Apr, 2019 1 commit
  3. 01 Nov, 2018 1 commit
    • cheerss's avatar
      update the calculation of num_batches_per_epoch · c8032908
      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)`
      c8032908
  4. 19 Jun, 2018 1 commit
  5. 11 Apr, 2018 1 commit
  6. 29 Mar, 2018 1 commit
  7. 13 Mar, 2018 1 commit
  8. 31 Jan, 2018 1 commit
  9. 12 Jan, 2018 1 commit
  10. 05 Jan, 2018 1 commit
  11. 21 Dec, 2017 2 commits
  12. 15 Nov, 2017 1 commit
  13. 13 Oct, 2017 1 commit
    • Seb Bro's avatar
      Update data URL · 82af172f
      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.
      82af172f
  14. 26 Sep, 2017 1 commit
  15. 22 Sep, 2017 6 commits
  16. 21 Sep, 2017 3 commits
  17. 16 Jun, 2017 1 commit
  18. 09 Jun, 2017 1 commit
  19. 08 Jun, 2017 5 commits
  20. 15 May, 2017 1 commit
  21. 16 Mar, 2017 2 commits
  22. 14 Mar, 2017 2 commits
  23. 08 Mar, 2017 1 commit
  24. 04 Mar, 2017 1 commit
  25. 14 Feb, 2017 1 commit
  26. 13 Feb, 2017 1 commit
    • Jongwook Choi's avatar
      Wrap the cifar10 multigpu model construction part with a variable_scope · 9d96e9fe
      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
      9d96e9fe