1. 05 Apr, 2019 1 commit
  2. 04 Apr, 2019 2 commits
  3. 03 Apr, 2019 4 commits
  4. 02 Apr, 2019 2 commits
  5. 01 Apr, 2019 2 commits
  6. 30 Mar, 2019 2 commits
  7. 29 Mar, 2019 4 commits
  8. 28 Mar, 2019 5 commits
    • Yuefeng Zhou's avatar
      Scale up learning rate according to num workers in Estimator imagenet models. (#6472) · 76300c26
      Yuefeng Zhou authored
      * Move distribution strategy creation before creating any ops, which is
      required by multi-node collective ops in eager mode.
      
      * Scale up learning rate according to num workers in ResNet50 w/
      Estimator.
      
      * Scale up LR in cifar.
      
      * Fix a typo.
      
      * Add num_workers to run param as well. Make num_worker optional in
      params.
      76300c26
    • Shining Sun's avatar
      Added benchmark test and convergence test for the NCF model (#6318) · 4c11b84b
      Shining Sun authored
      * initial commit
      
      * bug fix
      
      * Move build_stats from common to keras main, because it is only applicable in keras
      
      * remove tailing blank line
      
      * add test for synth data
      
      * add kwargs to init
      
      * add kwargs to function invokation
      
      * correctly pass kwargs
      
      * debug
      
      * debug
      
      * debug
      
      * fix super init
      
      * bug fix
      
      * fix local_flags
      
      * fix import
      
      * bug fix
      
      * fix log_steps flag
      
      * bug fix
      
      * bug fix: add missing return value
      
      * resolve double-defined flags
      
      * lint fix
      
      * move log_steps flag to benchmarK flag
      
      * fix lint
      
      * lint fix
      
      * lint fix
      
      * try flag core default values
      
      * bug fix
      
      * bug fix
      
      * bug fix
      
      * debug
      
      * debug
      
      * remove debug prints
      
      * rename benchmark methods
      
      * flag bug fix for synth benchmark
      4c11b84b
    • Ayush Dubey's avatar
    • Shining Sun's avatar
      Add a README for ResNet keras (#6293) · f5bb2af2
      Shining Sun authored
      * Initial commit
      
      * Fininshed
      
      * bug fix
      
      * bug fix
      
      * bug fix
      
      * Resolve review comments
      
      * Typo fix
      
      * resolve comments
      
      * fix number error
      
      * Resolve comments
      f5bb2af2
    • Haoyu Zhang's avatar
      Add trivial Keras model (#6460) · b09685fe
      Haoyu Zhang authored
      b09685fe
  9. 27 Mar, 2019 2 commits
    • cclauss's avatar
      Change function signature (#6459) · 0b2b8997
      cclauss authored
      * from NCF_input import NCFDataset for line 181
      
      The type __NCFDataset__ is used in the type declaration on line 81 but it is never imported.
      
      [flake8](http://flake8.pycqa.org) testing of https://github.com/tensorflow/models on Python 3.7.1
      
      $ __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__
      ```
      ./official/recommendation/data_preprocessing.py:180:3: F821 undefined name 'NCFDataset'
        # type: (str, str, dict, typing.Optional[str], bool, typing.Optional[str]) -> (NCFDataset, typing.Callable)
        ^
      1    F821 undefined name 'NCFDataset'
      1
      ```
      __E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.
      * F821: undefined name `name`
      * F822: undefined name `name` in `__all__`
      * F823: local variable name referenced before assignment
      * E901: SyntaxError or IndentationError
      * E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
      
      * int, int, data_pipeline.BaseDataConstructor
      0b2b8997
    • Haoyu Zhang's avatar
      7dbbca9d
  10. 26 Mar, 2019 4 commits
  11. 25 Mar, 2019 1 commit
  12. 22 Mar, 2019 2 commits
  13. 21 Mar, 2019 2 commits
  14. 20 Mar, 2019 2 commits
  15. 19 Mar, 2019 3 commits
  16. 18 Mar, 2019 1 commit
  17. 13 Mar, 2019 1 commit
    • Shining Sun's avatar
      Fix ncf test for keras (#6355) · dadc4a62
      Shining Sun authored
      * Fix ncf test for keras
      
      * add a todo for batch_size and eval_batch_size for ncf keras
      
      * lint fix
      
      * fix typos
      
      * Lint fix
      
      * fix lint
      
      * resolve pr comment
      
      * resolve pr comment
      dadc4a62