"csrc/vscode:/vscode.git/clone" did not exist on "b6dfb9ee3892dc9d9b36c8bf9a925a7c6358d331"
  1. 07 Aug, 2019 2 commits
  2. 06 Aug, 2019 6 commits
  3. 05 Aug, 2019 3 commits
    • zongweiz's avatar
      Force GPU placement for Resnet pure eager benchmark (#7303) · 8304e64a
      zongweiz authored
      * Force GPU placement for Resnet pure eager benchmark
      
      * Create tweaked version of eager benchmark with explicit GPU placement
      8304e64a
    • Toby Boyd's avatar
      6545cb3c
    • Igor's avatar
      Fix the ValueError: Error when checking model input on the new codepath (#7382) · ca7d215d
      Igor authored
      * Fix the ValueError: Error when checking model input on the new codepath
      
      Fixes the following error:
      
        File "/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/keras/engine/training.py", line 2428, in _standardize_user_data
          exception_prefix='input')
        File "/usr/local/lib/python3.6/dist-packages/tensorflow_core/python/keras/engine/training_utils.py", line 530, in standardize_input_data
          str(len(data)) + ' arrays: ' + str(data)[:200] + '...')
      ValueError: Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 2 array(s), but instead got the following list of 1 arrays: [<tf.Tensor 'cond_8/Identity:0' shape=(None, None) dtype=int64>]..
      
      Tested and reproduced by running trasformer_main_test (thanks to whoever wrote it, phew!)
      
      * Remove the unnecessary TODO.
      ca7d215d
  4. 03 Aug, 2019 1 commit
  5. 02 Aug, 2019 5 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
    • Hongkun Yu's avatar
      Update to use py3 lint (#7367) · a76e250f
      Hongkun Yu authored
      * Update to use py3 lint
      
      * Update model_saving_utils.py
      
      Testing. To be reverted
      
      * Update model_saving_utils.py
      a76e250f
    • Hongkun Yu's avatar
      Update presubmit.sh (#7366) · 126134f2
      Hongkun Yu authored
      old lint is no longer used.
      126134f2
    • 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
    • Yongzhe Wang's avatar
      Merged commit includes the following changes: (#7358) · 13e7c85d
      Yongzhe Wang authored
      261196859  by yongzhe:
      
          Integrate EdgeTPU API into the Mobile SSD tflite client.
      
          Build command with EdgeTPU enabled:
          bazel build mobile_ssd_tflite_client  --define enable_edgetpu=true
      
          Build command with EdgeTPU disabled:
          bazel build mobile_ssd_tflite_client
      
      --
      259096620  by Menglong Zhu:
      
          Remove unused proto imports.
      
      --
      
      PiperOrigin-RevId: 261196859
      13e7c85d
  6. 01 Aug, 2019 5 commits
    • Hongkun Yu's avatar
      Merged commit includes the following changes: (#7357) · aee49bbd
      Hongkun Yu authored
      261202754  by hongkuny<hongkuny@google.com>:
      
          Use enable_xla flag for classifier and squad, so xla option is exposed to users.
      
      --
      
      PiperOrigin-RevId: 261202754
      aee49bbd
    • 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
    • Hongkun Yu's avatar
      Merged commit includes the following changes: (#7347) · c92a7e16
      Hongkun Yu authored
      260862396  by A. Unique TensorFlower<gardener@tensorflow.org>:
      
          Fix BERT pretraining input pipeline to shuffle and shard dataset properly for multi-worker training.
      
      --
      
      PiperOrigin-RevId: 260862396
      c92a7e16
  7. 31 Jul, 2019 2 commits
    • Hongjun Choi's avatar
      Merged commit includes the following changes: (#7346) · 1b089751
      Hongjun Choi authored
      * Merged commit includes the following changes:
      260800447  by A. Unique TensorFlower<gardener@tensorflow.org>:
      
          Fix tf function signature errors for NCF model.
      
      --
      260767064  by psv<psv@google.com>:
      
          Renames the `run_distributed` flag to `experimental_run_tf_function` and modifies the tests generated by the keras_all_modes decorator to better reflect that.
      
      --
      
      PiperOrigin-RevId: 260800447
      
      * Update ncf_keras_benchmark.py
      
      * Update ncf_keras_benchmark.py
      
      * Update ncf_keras_benchmark.py
      
      * Update ncf_keras_benchmark.py
      1b089751
    • Toby Boyd's avatar
      a552e76a
  8. 30 Jul, 2019 8 commits
  9. 29 Jul, 2019 2 commits
    • Hongkun Yu's avatar
      Merged commit includes the following changes: (#7323) · d65af7d8
      Hongkun Yu authored
      260580119  by hongkuny<hongkuny@google.com>:
      
          Adds expect_partial()
      
      --
      
      PiperOrigin-RevId: 260580119
      d65af7d8
    • Hongjun Choi's avatar
      Merged commit includes the following changes: (#7322) · 803f833c
      Hongjun Choi authored
      260228553  by priyag<priyag@google.com>:
      
          Enable transformer and NCF official model tests. Also fix some minor issues so that all tests pass with TF 1 + enable_v2_behavior.
      
      --
      260043210  by A. Unique TensorFlower<gardener@tensorflow.org>:
      
          Add logic to train NCF model using offline generated data.
      
      --
      259778607  by priyag<priyag@google.com>:
      
          Internal change
      
      259656389  by hongkuny<hongkuny@google.com>:
      
          Internal change
      
      PiperOrigin-RevId: 260228553
      803f833c
  10. 26 Jul, 2019 2 commits
    • Hongkun Yu's avatar
      Merged commit includes the following changes: (#7309) · 8c7a0e75
      Hongkun Yu authored
      260060237  by zongweiz<zongweiz@google.com>:
      
          [BERT SQuAD] Enable mixed precision training
      
          Add mixed precision training support for BERT SQuAD model. Using the experimental Keras mixed precision API. For numeric stability, use fp32 for layer normalization, dense layers with GELU activation, etc.
      
      --
      
      PiperOrigin-RevId: 260060237
      8c7a0e75
    • Hongkun Yu's avatar
      Merged commit includes the following changes: (#7307) · 745a06a9
      Hongkun Yu authored
      260052674  by hongkuny<hongkuny@google.com>:
      
          Add expect_partial()
      
      --
      
      PiperOrigin-RevId: 260052674
      745a06a9
  11. 25 Jul, 2019 4 commits