Go to file
2023-05-14 11:51:30 -07:00
examples Fix jax bug + annoying TF warning 2023-05-13 22:54:25 -07:00
integration_tests Adds CategoryEncoding layer, bincount op, and tests (#161) 2023-05-14 00:07:43 +00:00
keras_core fix lint (#168) 2023-05-14 18:41:50 +00:00
shell Merge branch 'main' of github.com:keras-team/keras-core 2023-04-21 23:16:51 -07:00
.gitignore Merge branch 'main' of github.com:keras-team/keras-core 2023-05-08 11:35:10 -07:00
demo_functional.py Fix typos 2023-05-02 22:44:46 -07:00
jax_integration_test.py Minor refactor of backend.random 2023-04-12 21:07:17 -07:00
jax_training_scratchpad.py re-enable imports checks (#51) 2023-04-27 17:51:32 -07:00
LICENSE Add license. 2023-04-09 13:00:24 -07:00
pip_build.py Add README and update setup.py 2023-05-14 11:51:30 -07:00
pyproject.toml Merge branch 'main' of github.com:keras-team/keras-core 2023-04-21 23:16:51 -07:00
README.md Add README and update setup.py 2023-05-14 11:51:30 -07:00
requirements.txt Adds CategoryEncoding layer, bincount op, and tests (#161) 2023-05-14 00:07:43 +00:00
setup.cfg fix lint (#168) 2023-05-14 18:41:50 +00:00
setup.py Add README and update setup.py 2023-05-14 11:51:30 -07:00
tf_integration_test.py Minor refactor of backend.random 2023-04-12 21:07:17 -07:00

Keras Core: a new multi-backend Keras

Keras Core is a new multi-backend implementation of the Keras API, with support for TensorFlow, JAX, and PyTorch.

Backwards compatibility

Keras Core is intend to work as a drop-in replacement for tf.keras (when using the TensorFlow backend).

Why use Keras Core?

  • Write custom components (e.g. layers, models, metrics) that you can move across framework boundaries.
  • Make your code future-proof by avoiding framework lock-in.
  • As a JAX user: get access to a fully-featured modeling and training library.
  • As a PyTorch user: get access to the real Keras, at last!

Credits

TODO