1. 19 Apr, 2021 3 commits
  2. 17 Apr, 2021 2 commits
    • Chen Chen's avatar
      Catch tf.text NotFoundError: · ffaa4035
      Chen Chen authored
      tensorflow.python.framework.errors_impl.NotFoundError: /usr/local/lib/python3.6/dist-packages/tensorflow_text/python/metrics/_text_similarity_metric_ops.so: undefined symbol: _ZN10tensorflow6StatusC1ENS_5error4CodeEN4absl12lts_2021032411string_viewEOSt6vectorINS_10StackFrameESaIS7_EE
      
      PiperOrigin-RevId: 368978629
      ffaa4035
    • Fan Yang's avatar
      Internal change to image classification. · 8fa62b84
      Fan Yang authored
      PiperOrigin-RevId: 368957441
      8fa62b84
  3. 16 Apr, 2021 3 commits
  4. 15 Apr, 2021 3 commits
  5. 14 Apr, 2021 2 commits
  6. 13 Apr, 2021 7 commits
  7. 12 Apr, 2021 5 commits
    • Reed Wanderman-Milne's avatar
      Use nonexperimental mixed precision API for official models. · 0d8f9807
      Reed Wanderman-Milne authored
      For all modified calls to set_mixed_precision_policy(), the loss_scale argument was removed, as it cannot be passed if the nonexperimental API is used. For all such callers, the loss_scale is later used to explicitly create a LossScaleOptimizer, so removing the argument has no impact.
      
      Switching to the non-experimental LossScaleOptimizer has no effect, as it has near identical behavior and all isinstance checks within the official models check for the non-experimental version.
      
      PiperOrigin-RevId: 368101975
      0d8f9807
    • Tianjian Meng's avatar
      Internal change · 0338ca4b
      Tianjian Meng authored
      PiperOrigin-RevId: 368070382
      0338ca4b
    • Reed Wanderman-Milne's avatar
      Internal change · 1bbd359d
      Reed Wanderman-Milne authored
      PiperOrigin-RevId: 368067415
      1bbd359d
    • A. Unique TensorFlower's avatar
      Internal change · ecbc3fd8
      A. Unique TensorFlower authored
      PiperOrigin-RevId: 368040234
      ecbc3fd8
    • Abdullah Rashwan's avatar
      Internal change · 6f917c69
      Abdullah Rashwan authored
      PiperOrigin-RevId: 368036370
      6f917c69
  8. 09 Apr, 2021 2 commits
  9. 08 Apr, 2021 2 commits
  10. 07 Apr, 2021 1 commit
  11. 06 Apr, 2021 7 commits
  12. 05 Apr, 2021 3 commits
    • Scott Zhu's avatar
      Internal change · a9fe9ba9
      Scott Zhu authored
      PiperOrigin-RevId: 366900579
      a9fe9ba9
    • Reed Wanderman-Milne's avatar
      Use nonexperimental LSO API in base_task.py. · cc12499b
      Reed Wanderman-Milne authored
      This shouldn't break any official models, since I changed all LossScaleOptimizer isinstance checks to use the nonexperimental version (the experimental LSO subclasses the nonexperimental LSO, so changing isinstance checks in this way is always safe).
      
      PiperOrigin-RevId: 366891847
      cc12499b
    • Jeremiah Liu's avatar
      Adds `call()` method to `GaussianProcessClassificationHead`. · 2ae06c8a
      Jeremiah Liu authored
      This change allows `GaussianProcessClassificationHead` to output only the predictive logits during training and evaluation (instead of outputting a tuple  `(logits, covmat)`). The goal is to make the layer more compatible with `SentencePredictionTask` and Keras' `model.fit()` API.
      
      PiperOrigin-RevId: 366891298
      2ae06c8a