Update README

This commit is contained in:
Francois Chollet 2023-06-08 21:53:02 -07:00
parent 61eaf98d35
commit b4c5e416e2
2 changed files with 7 additions and 0 deletions

@ -2,6 +2,10 @@
Keras Core is a new multi-backend implementation of the Keras API, with support for TensorFlow, JAX, and PyTorch. Keras Core is a new multi-backend implementation of the Keras API, with support for TensorFlow, JAX, and PyTorch.
## Local installation
Run `python3 pip_build.py --install` from the root directory.
## Backwards compatibility ## Backwards compatibility
Keras Core is intend to work as a drop-in replacement for `tf.keras` (when using the TensorFlow backend). Keras Core is intend to work as a drop-in replacement for `tf.keras` (when using the TensorFlow backend).

@ -22,6 +22,9 @@ import shutil
import namex import namex
# Needed because importing torch after TF causes the runtime to crash
import torch # noqa: F401
package = "keras_core" package = "keras_core"
build_directory = "tmp_build_dir" build_directory = "tmp_build_dir"
dist_directory = "dist" dist_directory = "dist"