1. 07 Mar, 2019 2 commits
  2. 06 Mar, 2019 1 commit
  3. 02 Mar, 2019 1 commit
  4. 01 Mar, 2019 3 commits
    • Shining Sun's avatar
      Keras-fy NCF Model (#6092) · 048e5bff
      Shining Sun authored
      * tmp commit
      
      * tmp commit
      
      * first attempt (without eval)
      
      * Bug fixes
      
      * bug fixes
      
      * training done
      
      * Loss NAN, no eval
      
      * Loss weight problem solved
      
      * resolve the NAN loss problem
      
      * Problem solved. Clean up needed
      
      * Added a todo
      
      * Remove debug prints
      
      * Extract get_optimizer to ncf_common
      
      * Move metrics computation back to neumf; use DS.scope api
      
      * Extract DS.scope code to utils
      
      * lint fixes
      
      * Move obtaining DS above producer.start to avoid race condition
      
      * move pt 1
      
      * move pt 2
      
      * Update the run script
      
      * Wrap keras_model related code into functions
      
      * Update the doc for softmax_logitfy and change the method name
      
      * Resolve PR comments
      
      * working version with: eager, DS, batch and no masks
      
      * Remove git conflict indicator
      
      * move reshape to neumf_model
      
      * working version, not converge
      
      * converged
      
      * fix a test
      
      * more lint fix
      
      * more lint fix
      
      * more lint fixes
      
      * more lint fix
      
      * Removed unused imports
      
      * fix test
      
      * dummy commit for kicking of checks
      
      * fix lint issue
      
      * dummy input to kick off checks
      
      * dummy input to kick off checks
      
      * add collective to dist strat
      
      * addressed review comments
      
      * add a doc string
      048e5bff
    • Haoyu Zhang's avatar
      Add Keras XLA Tests (#6286) · fa9ed456
      Haoyu Zhang authored
      * Added XLA test with a monkey-patched op to avoid OOM
      
      * Added doc strings in Keras benchmarks to avoid Lint error
      fa9ed456
    • Yash Katariya's avatar
      Update imagenet_preprocessing.py (#6291) · a76cd3ac
      Yash Katariya authored
      a76cd3ac
  5. 28 Feb, 2019 3 commits
  6. 25 Feb, 2019 1 commit
  7. 22 Feb, 2019 4 commits
  8. 21 Feb, 2019 2 commits
    • Ayush Dubey's avatar
      Multi-worker support for Resnet. (#6206) · f2e90945
      Ayush Dubey authored
      * Update official resnet for multi worker training with distribution strategies.
      
      * Fixes for multi worker training.
      
      * Fix call to `get_distribution_strategy`.
      
      * Undo test change.
      
      * Fix spacing.
      
      * Move cluster configuration to distribution_utils.
      
      * Move train_and_evaluate out of loop.  Also, update docstrings for multi-worker flags and add use_train_and_evaluate flag.
      
      * Update distribution_strategy flag to match exported name for collective strategy.
      f2e90945
    • Haoyu Zhang's avatar
      Add flag to enable XLA in Keras models (#6240) · 4571d3fa
      Haoyu Zhang authored
      * Add flag to enable XLA in Keras models
      
      * Fix lint errors (some of them are old errors)
      4571d3fa
  9. 19 Feb, 2019 1 commit
  10. 15 Feb, 2019 1 commit
  11. 14 Feb, 2019 7 commits
  12. 13 Feb, 2019 2 commits
  13. 12 Feb, 2019 4 commits
    • Toby Boyd's avatar
      Add model_dir to all tests to avoid "resource not found error". (#6143) · f788046c
      Toby Boyd authored
      * fix test benchmark_graph_1_gpu_no_dist_strat failing
      
      - Failure only occurs when all 1_gpu tests are run
      together with the error:
      tensorflow.python.framework.errors_impl.NotFoundError:
      Resource localhost/logdir:/tmp/cifar10_model/
      N10tensorflow22SummaryWriterInterfaceE does not exist.
      [Op:WriteScalarSummary] name: epoch_loss/
      
      Another fix might be to generate a different model_dir
      in the core code, but that has other draw backs such as
      restarting from the checkpoint.
      
      * Model_dir for all tests.
      f788046c
    • Toby Boyd's avatar
      25b10ebe
    • Toby Boyd's avatar
      V2 contrib tweaks (#6184) · a1ee97e6
      Toby Boyd authored
      * Remove contrib thread pool.
      
      * Remove commented out contrib import.
      
      * Fix lint issues.
      
      * move tf.data.options higher. Tweak line breaks.
      
      * do not monkey patch on or off if dist_strat is off
      
      * Do not monkey patch if no_dist_strat.
      
      * Fix file permissions.
      
      * fix file permissions.
      
      * Revert change to main.  Add hasattr(tf, 'contrib') to utils
      
      * compat.v1.logging
      
      * tf.compat.v1.get_local_variables.
      a1ee97e6
    • Toby Boyd's avatar
      add validation_freq which matches estimator settings. (#6180) · 7e056690
      Toby Boyd authored
      - Modest speedup for CIFAR-10
      - Slightly greater speedup expected for ImageNet ResNet50.
      7e056690
  14. 11 Feb, 2019 2 commits
  15. 09 Feb, 2019 1 commit
    • Yuefeng Zhou's avatar
      Add pure synthetic data to keras resnet model. (#6174) · 05383c7b
      Yuefeng Zhou authored
      * Add pure synthetic data to keras resnet mode.
      
      * Add imports.
      
      * Address comments.
      
      * update comment
      
      * Undo set up synthetic data for real data path.
      
      * update comment
      
      * Address comment
      
      * Remove trailing whiltespaces.
      
      * s/make_data_set_iterator/make_dataset_iterator/
      05383c7b
  16. 08 Feb, 2019 1 commit
  17. 06 Feb, 2019 1 commit
  18. 05 Feb, 2019 1 commit
    • Goldie Gadde's avatar
      tf_upgrade_v2 on resnet and utils folders. (#6154) · d6b2b83c
      Goldie Gadde authored
      * Add resnet56 short tests. (#6101)
      
      * Add resnet56 short tests.
      - created base benchmark module
      - renamed accuracy test class to contain the word Accuracy
      which will result in a need to update all the jobs
      and a loss of history but is worth it.
      - short tests are mostly copied from shining with oss refactor
      
      * Address feedback.
      
      * Move flag_methods to init
      - Address setting default flags repeatedly.
      
      * Rename accuracy tests.
      
      * Lint errors resolved.
      
      * fix model_dir set to flags.data_dir.
      
      * fixed not fulling pulling out flag_methods.
      
      * Use core mirrored strategy in official models (#6126)
      
      * Imagenet short tests (#6132)
      
      * Add short imagenet tests (taken from seemuch)
      - also rename to match go forward naming
      
      * fix method name
      
      * Update doc strings.
      
      * Fixe gpu number.
      
      * points default data_dir to child folder. (#6131)
      
      Failed test is python2  and was a kokoro failure
      
      * Imagenet short tests (#6136)
      
      * Add short imagenet tests (taken from seemuch)
      - also rename to match go forward naming
      
      * fix method name
      
      * Update doc strings.
      
      * Fixe gpu number.
      
      * Add fill_objects
      
      * fixed calling wrong class in super.
      
      * fix lint issue.
      
      * Flag (#6121)
      
      * Fix the turn_off_ds flag problem
      
      * add param names to all args
      
      * Export benchmark stats using tf.test.Benchmark.report_benchmark() (#6103)
      
      * Export benchmark stats using tf.test.Benchmark.report_benchmark()
      
      * Fix python style using pyformat
      
      * Typos. (#6120)
      
      * log verbosity=2 logs every epoch no progress bars (#6142)
      
      * tf_upgrade_v2 on resnet and utils folder.
      
      * tf_upgrade_v2 on resnet and utils folder.
      d6b2b83c
  19. 03 Feb, 2019 1 commit
  20. 02 Feb, 2019 1 commit