1. 03 8月, 2022 1 次提交
  2. 04 5月, 2022 1 次提交
  3. 19 1月, 2022 1 次提交
  4. 11 11月, 2021 1 次提交
  5. 08 10月, 2021 1 次提交
  6. 25 8月, 2021 1 次提交
  7. 18 5月, 2021 1 次提交
  8. 24 4月, 2021 1 次提交
  9. 13 3月, 2021 1 次提交
  10. 10 3月, 2021 1 次提交
  11. 19 2月, 2021 1 次提交
  12. 21 12月, 2020 1 次提交
  13. 10 12月, 2020 1 次提交
  14. 19 11月, 2020 2 次提交
  15. 28 10月, 2020 1 次提交
  16. 27 10月, 2020 1 次提交
  17. 24 10月, 2020 1 次提交
  18. 14 10月, 2020 1 次提交
  19. 12 9月, 2020 1 次提交
  20. 10 9月, 2020 1 次提交
  21. 02 9月, 2020 1 次提交
  22. 26 8月, 2020 2 次提交
  23. 20 8月, 2020 2 次提交
  24. 18 8月, 2020 2 次提交
  25. 13 8月, 2020 2 次提交
  26. 31 7月, 2020 2 次提交
  27. 17 7月, 2020 2 次提交
  28. 15 5月, 2020 1 次提交
  29. 14 5月, 2020 1 次提交
  30. 13 5月, 2020 1 次提交
    • S
      Restructure the Keras class hierarchy for Network, Model and Sequential. · d08af90d
      Scott Zhu 提交于
      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
  31. 09 5月, 2020 1 次提交
  32. 08 5月, 2020 1 次提交
  33. 21 4月, 2020 1 次提交