1. 14 May, 2020 7 commits
  2. 13 May, 2020 3 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
    • 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
  3. 12 May, 2020 6 commits
  4. 11 May, 2020 2 commits
  5. 10 May, 2020 2 commits
  6. 09 May, 2020 2 commits
  7. 08 May, 2020 2 commits
  8. 07 May, 2020 4 commits
  9. 06 May, 2020 6 commits
  10. 05 May, 2020 3 commits
    • Hongkun Yu's avatar
      Introduce output_range for transformer layer and encoder last layer. · 563d923a
      Hongkun Yu authored
      PiperOrigin-RevId: 310032518
      563d923a
    • Jaeyoun Kim's avatar
      Add new templates and update README files (#8467) · 9c1429cf
      Jaeyoun Kim authored
      * Update README.md
      
      Add a new section (Announcements)
      
      * Update README.md
      
      Remove description columns from tables
      Remove guidelines sections
      
      * Update CONTRIBUTING.md
      
      Add a link to the wiki for guidelines
      
      * Create README_TEMPLATE.md
      
      Add a README template file for a new model
      
      * Create pull_request_template.md
      
      Add a new template for a pull request
      
      * Update README.md
      
      Add a table of contents
      Add a new section for archived models and implementations
      
      * Update README.md
      
      Revise "Contributions"
      
      * Update README.md
      
      Update the link to the contribution guidelines
      
      * Update README.md
      
      Update the link to the contribution guidelines.
      
      * Update README.md
      
      Update the link to the contribution guidelines.
      
      * Update README.md
      
      Update the link to the contribution guidelines.
      9c1429cf
    • A. Unique TensorFlower's avatar
      Add `tf-graph-compiler` as owner for 3D Unet benchmark test. · 71943914
      A. Unique TensorFlower authored
      PiperOrigin-RevId: 309849959
      71943914
  11. 04 May, 2020 3 commits