A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/keras-team/keras/releases below:

Releases · keras-team/keras · GitHub

Releases: keras-team/keras

Releases · keras-team/keras

Keras 3.11.2 Keras 3.11.1 Keras 3.11.0 What's Changed Backend-specific changes JAX backend TensorFlow backend OpenVINO backend New Contributors

Full Changelog: v3.10.0...v3.11.0

Keras 3.10.0 New features PyTorch backend TensorFlow backend OpenVINO backend New Contributors

Full Changelog: v3.9.0...v3.10.0

Keras 3.9.2 What's Changed

Full Changelog: v3.9.1...v3.9.2

Keras 3.9.1 What's Changed

Full Changelog: v3.9.0...v3.9.1

Keras 3.9.0 New features New Contributors

Full Changelog: v3.8.0...v3.9.0

Keras 3.8.0 New: OpenVINO backend

OpenVINO is now available as an infererence-only Keras backend. You can start using it by setting the backend field to "openvino" in your keras.json config file.

OpenVINO is a deep learning inference-only framework tailored for CPU (x86, ARM), certain GPUs (OpenCL capable, integrated and discrete) and certain AI accelerators (Intel NPU).

Because OpenVINO does not support gradients, you cannot use it for training (e.g. model.fit()) -- only inference. You can train your models with the JAX/TensorFlow/PyTorch backends, and when trained, reload them with the OpenVINO backend for inference on a target device supported by OpenVINO.

New: ONNX model export

You can now export your Keras models to the ONNX format from the JAX, TensorFlow, and PyTorch backends.

Just pass format="onnx" in your model.export() call:

# Export the model as a ONNX artifact
model.export("path/to/location", format="onnx")

# Load the artifact in a different process/environment
ort_session = onnxruntime.InferenceSession("path/to/location")

# Run inference
ort_inputs = {
    k.name: v for k, v in zip(ort_session.get_inputs(), input_data)
}
predictions = ort_session.run(None, ort_inputs)
New: Scikit-Learn API compatibility interface

It's now possible to easily integrate Keras models into Sciki-Learn pipelines! The following wrapper classes are available:

Other feature additions JAX specific changes TensorFlow specific changes PyTorch specific changes New Contributors

Full Changelog: v3.7.0...v3.8.0

Keras 3.7.0 API changes Performance improvements New Contributors

Full Changelog: v3.6.0...v3.7.0

Keras 3.6.0 Highlights BREAKING changes Other changes and additions New Contributors

Full Changelog: v3.5.0...v3.6.0

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4