Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jun 9, 2023
1 parent 61eaf98 commit b4c5e41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

Keras Core is intend to work as a drop-in replacement for `tf.keras` (when using the TensorFlow backend).
Expand Down
3 changes: 3 additions & 0 deletions pip_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

import namex

# Needed because importing torch after TF causes the runtime to crash
import torch # noqa: F401

package = "keras_core"
build_directory = "tmp_build_dir"
dist_directory = "dist"
Expand Down

0 comments on commit b4c5e41

Please sign in to comment.