1. 20 May, 2020 1 commit
  2. 19 May, 2020 12 commits
  3. 18 May, 2020 6 commits
    • nuka137's avatar
      Fix typo in vision/detection README.md · e5f47726
      nuka137 authored
      e5f47726
    • Sanjay Parajuli's avatar
      Update deeplab/local_test.sh (#8517) · 3ef7bbcf
      Sanjay Parajuli authored
      To fix the following error:
      File "/usr/local/lib/python3.6/dist-packages/absl/flags/_flagvalues.py", line 698, in get_value raise _exceptions.Error('Missing value for flag ' + arg) # pylint: disable=undefined-loop-variable absl.flags._exceptions.Error: Missing value for flag -v
      3ef7bbcf
    • Chen Chen's avatar
      Internal Change · 6f7a682d
      Chen Chen authored
      PiperOrigin-RevId: 312116965
      6f7a682d
    • BasiaFusinska's avatar
      Python 2 -> 3 migration (#8525) · 19e60dc3
      BasiaFusinska authored
      * Changed DELF installation instructions to be Python3 preferred
      
      * Changed DELF landmark detection instructions to be Python3 preferred
      
      * Changed DELF extraction and matching instructions to be Python3 preferred
      
      * Changed DELF detect-to-retrieve instructions to be Python3 preferred
      
      * Changed DELF training instructions to be Python3 preferred
      
      * Added Python3 badge to DELF README
      19e60dc3
    • Hongkun Yu's avatar
      Add NHNet quality benchmark. · e81d423d
      Hongkun Yu authored
      PiperOrigin-RevId: 312099777
      e81d423d
    • A. Unique TensorFlower's avatar
      Internal change · 457064e1
      A. Unique TensorFlower authored
      PiperOrigin-RevId: 312096778
      457064e1
  4. 17 May, 2020 1 commit
  5. 15 May, 2020 3 commits
  6. 14 May, 2020 12 commits
  7. 13 May, 2020 5 commits
    • Hongkun Yu's avatar
      Internal change · dd5ee3bb
      Hongkun Yu authored
      PiperOrigin-RevId: 311430970
      dd5ee3bb
    • Chen Chen's avatar
      Internal change · 3c5d118c
      Chen Chen authored
      PiperOrigin-RevId: 311428193
      3c5d118c
    • Jaeyoun Kim's avatar
      Update README.md · 460943f9
      Jaeyoun Kim authored
      Add new updates
      460943f9
    • Sarath Shekkizhar's avatar
      Updating cifar download links (#8489) · fd34f711
      Sarath Shekkizhar authored
      The cifar dataset links are changed to download python version of files. Downloading binary files will throw an error with the current code
      fd34f711
    • Scott Zhu's avatar
      Restructure the Keras class hierarchy for Network, Model and Sequential. · d08af90d
      Scott Zhu authored
      The intention of this change is to reduce the code complexity within Keras class, especially for Network, which currently contains logic for both subclass Model and functional Model.
      
      After this change, the subclass model and functional model become individual class and become self contained.
      
      1. Model is now the base class for subclass model. It doesn't contains network structure management, and the topology will be created within __init__ and __call__, which is for user to implement. It also contains compile/fit/eval/predict, which is the basic functionality for model training.
      
      2. Functional is created based on existing Network class. It extends the Model, which allows it leverage compile/fit/eval/predict. In addition, it also take input/output as init parameter and manage the network topology.
      
      3. Sequential model is now a subclass of Functional, since it will use Functional's method to manage it topology (layer stacking).
      
      Model(input, output) will create a Functional under the hood, and behave the same way as before.
      
      PiperOrigin-RevId: 311232972
      d08af90d