1. 06 Sep, 2019 1 commit
  2. 05 Sep, 2019 1 commit
  3. 03 Sep, 2019 1 commit
  4. 29 Aug, 2019 1 commit
    • Reed Wanderman-Milne's avatar
      Use new mixed_float16 policy for resnet. · dcd0e7ad
      Reed Wanderman-Milne authored
      The old infer_float32_policies policy will be removed from TensorFlow soon.
      
      To test convergence, I ran the Resnet50KerasAccuracy.benchmark_8_gpu_fp16 benchmark. I got an accuracy of 0.76037 and an exp_per_second of 6908.
      
      PiperOrigin-RevId: 266191126
      dcd0e7ad
  5. 22 Aug, 2019 2 commits
  6. 21 Aug, 2019 1 commit
  7. 19 Aug, 2019 2 commits
  8. 16 Aug, 2019 3 commits
  9. 13 Aug, 2019 1 commit
  10. 10 Aug, 2019 1 commit
  11. 09 Aug, 2019 1 commit
  12. 07 Aug, 2019 1 commit
  13. 06 Aug, 2019 1 commit
  14. 05 Aug, 2019 2 commits
  15. 02 Aug, 2019 2 commits
    • Haoyu Zhang's avatar
      Merged commit includes the following changes: (#7368) · 23c0017f
      Haoyu Zhang authored
      * Merged commit includes the following changes:
      261380794  by haoyuzhang<haoyuzhang@google.com>:
      
          Internal change
      
      261374439  by haoyuzhang<haoyuzhang@google.com>:
      
          Change Keras CTL dependencies from r1 ResNet to Keras ResNet.
      
      --
      
      PiperOrigin-RevId: 261380794
      
      * Revert unintentional change
      
      * Revert unintentional change
      23c0017f
    • Haoyu Zhang's avatar
      Merged commit includes the following changes: (#7365) · 1921a3b5
      Haoyu Zhang authored
      261339941  by haoyuzhang<haoyuzhang@google.com>:
      
          Own library functions in Keras ResNet models, and remove dependencies on v1 Estimator version of ResNet models.
      
          Most dependencies that the Keras version has are related to data input pipelines. Created dedicated files (cifar_preprocessing.py, imagenet_preprocessing.py) to collect all logic handling Cifar and ImageNet data input function.
      
      --
      261339166  by haoyuzhang<haoyuzhang@google.com>:
      
          Internal change
      
      261317601  by akuegel<akuegel@google.com>:
      
          Internal change
      
      261218818  by A. Unique TensorFlower<gardener@tensorflow.org>:
      
          Internal change
      
      PiperOrigin-RevId: 261339941
      1921a3b5
  16. 01 Aug, 2019 3 commits
    • Haoyu Zhang's avatar
      Move the official ResNet (estimator version) under `official/r1` (#7355) · 87542800
      Haoyu Zhang authored
      * Restructure resnet estimator code to under official/r1
      
      * Continue moving resnet code...
      
      * Improved README.md
      87542800
    • Haoyu Zhang's avatar
      Merged commit includes the following changes: (#7354) · dc4c5f1a
      Haoyu Zhang authored
      261171038  by gjn<gjn@google.com>:
      
          Remove weight_decay_rate 0 early exit check
      
          Removing this code path should be fine since this was actually not doing
          what it meant to do. Since weight_decay_rate is actually a tensor, the
          equality check was only looking at the id of the object and comparing to
          0. This should never be true. Evaluating a tensor is also not what we
          want to do at this point of the code. Thus it should be fine to simply
          remove this code.
      
      --
      261169862  by haoyuzhang<haoyuzhang@google.com>:
      
          Internal change
      
      261153520  by haoyuzhang<haoyuzhang@google.com>:
      
          Internal change
      
      261140302  by hongkuny<hongkuny@google.com>:
      
          Clean up
      
      --
      
      PiperOrigin-RevId: 261171038
      dc4c5f1a
    • Haoyu Zhang's avatar
      Remove whitespaces from empty lines (#7353) · 144bc3c2
      Haoyu Zhang authored
      144bc3c2
  17. 31 Jul, 2019 1 commit
  18. 30 Jul, 2019 1 commit
  19. 25 Jul, 2019 1 commit
  20. 24 Jul, 2019 2 commits
  21. 23 Jul, 2019 1 commit
  22. 19 Jul, 2019 2 commits
    • Igor's avatar
      Merged commit includes the following changes: (#7264) · 6f47c378
      Igor authored
      259030078  by isaprykin<isaprykin@google.com>:
      
          Clean up the --clone_model_in_keras_dist_strat from Keras Resnet.
      
          The cloning flag has been removed.  The current rule is that cloning is only done in graph mode.  That resulted in duplicate benchmarks: eager+no-cloning vs eager+cloning.  I removed eager+cloning ones.
      
      --
      259026454  by isaprykin<isaprykin@google.com>:
      
          Internal change
      
      PiperOrigin-RevId: 259030078
      6f47c378
    • Jing Li's avatar
      Merged commit includes the following changes: (#7263) · c5a4978d
      Jing Li authored
      * Merged commit includes the following changes:
      258867180  by jingli<jingli@google.com>:
      
          Add new folders for upcoming reorg in model garden.
      
      --
      258893811  by hongkuny<hongkuny@google.com>:
      
          Adds summaries for metrics, allowing metrics inside keras.model.
      
      --
      258893048  by isaprykin<isaprykin@google.com>:
      
          Remove the `cloning` argument to `compile()`.
      
          Keras models are distributed by cloning in graph mode and without cloning in eager mode as of the change # 258652546.
      
      --
      258881002  by hongkuny<hongkuny@google.com>:
      
          Fix lint.
      
      --
      258874998  by hongkuny<hongkuny@google.com>:
      
          Internal
      
      --
      258872662  by hongkuny<hongkuny@google.com>:
      
          Fix doc
      
      --
      
      PiperOrigin-RevId: 258867180
      
      * Create __init__.py
      
      * Update __init__.py
      
      * Update __init__.py
      
      * Update __init__.py
      c5a4978d
  23. 18 Jul, 2019 1 commit
    • Haoyu Zhang's avatar
      Improve Keras graph performance for ResNet56 (#7241) · dd5a91d3
      Haoyu Zhang authored
      * Config threadpool, cuDNN persistent BN, and grappler layout optimizer properly for ResNet56
      
      * Add tweaked tests for Resnet56
      
      * Avoid triggering the last partial batch overhead by explicitly dropping remainder
      dd5a91d3
  24. 11 Jul, 2019 2 commits
  25. 09 Jul, 2019 1 commit
  26. 03 Jul, 2019 1 commit
    • Toby Boyd's avatar
      Unit tests pass TF 2.0 GPU and CPU locally. (#7101) · 49097655
      Toby Boyd authored
      * Fix unit tests failures.
      
      * 96% of TF 2.0 tests on GPU are passing.
      
      * Currently all passing GPU and CPU TF 2.0
      
      * Address code comments.
      
      * use tf 2.0 cast.
      
      * Comment about working on TF 2.0 CPU
      
      * Uses contrib turn off for TF 2.0.
      
      * Fix wide_deep and add keras_common_tests.
      
      * use context to get num_gpus.
      
      * Switch to tf.keras.metrics
      49097655
  27. 22 Jun, 2019 1 commit
  28. 21 Jun, 2019 2 commits