Skip to content

Commit 5fcd9b4

Browse files
authored
Add OpenVINO into README.md (keras-team#20739)
* Add OpenVINO into README.md Signed-off-by: Kazantsev, Roman <[email protected]> * Update README.md --------- Signed-off-by: Kazantsev, Roman <[email protected]>
1 parent fd2955f commit 5fcd9b4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Keras 3: Deep Learning for Humans
22

3-
Keras 3 is a multi-backend deep learning framework, with support for JAX, TensorFlow, and PyTorch.
3+
Keras 3 is a multi-backend deep learning framework, with support for JAX, TensorFlow, PyTorch, and OpenVINO (for inference-only).
44
Effortlessly build and train models for computer vision, natural language processing, audio processing,
55
timeseries forecasting, recommender systems, etc.
66

@@ -73,7 +73,7 @@ python pip_build.py --install
7373
## Configuring your backend
7474

7575
You can export the environment variable `KERAS_BACKEND` or you can edit your local config file at `~/.keras/keras.json`
76-
to configure your backend. Available backend options are: `"tensorflow"`, `"jax"`, `"torch"`. Example:
76+
to configure your backend. Available backend options are: `"tensorflow"`, `"jax"`, `"torch"`, `"openvino"`. Example:
7777

7878
```
7979
export KERAS_BACKEND="jax"
@@ -91,6 +91,10 @@ import keras
9191
**Note:** The backend must be configured before importing `keras`, and the backend cannot be changed after
9292
the package has been imported.
9393

94+
**Note:** The OpenVINO backend is an inference-only backend, meaning it is designed only for running model
95+
predictions using `model.predict()` method.
96+
To use `openvino` backend, install the required dependencies from the `requirements-openvino.txt` file.
97+
9498
## Backwards compatibility
9599

96100
Keras 3 is intended to work as a drop-in replacement for `tf.keras` (when using the TensorFlow backend). Just take your

0 commit comments

Comments
 (0)