Keras v2.4.0 Release Notes
Release Date: 2020-06-17 // over 4 years ago-
๐ As previously announced, we have discontinued multi-backend Keras to refocus exclusively on the TensorFlow implementation of Keras.
๐ฆ In the future, we will develop the TensorFlow implementation of Keras in the present repo, at
keras-team/keras
. For the time being, it is being developed intensorflow/tensorflow
and distributed astensorflow.keras
. In this future, thekeras
package on PyPI will be the same astf.keras
.๐ This release (2.4.0) simply redirects all APIs in the standalone
keras
package to point totf.keras
. This helps address user confusion regarding differences and incompatibilities betweentf.keras
and the standalonekeras
package. There is now only one Keras:tf.keras
.- ๐ Note that this release may be breaking for some workflows when going from Keras 2.3.1 to 2.4.0. Test before upgrading.
- Note that we still recommend that you import Keras as
from tensorflow import keras
, rather thanimport keras
, for the time being.
Previous changes from v2.3.1
-
๐ Keras 2.3.1 is a minor bug-fix release. In particular, it fixes an issue with using Keras models across multiple threads.
๐ Changes
- ๐ Bug fixes
- ๐ Documentation fixes
- No API changes
- No breaking changes