Add FeatureSpace utility.

PiperOrigin-RevId: 487344904
This commit is contained in:
Francois Chollet 2022-11-09 14:17:14 -08:00 committed by TensorFlower Gardener
parent 7181d047d9
commit 4cc70f4415

View File

@ -20,6 +20,8 @@
* `tf.keras`:
* Added utility `tf.keras.utils.FeatureSpace`, a one-stop shop for
structured data preprocessing and encoding.
* Added `tf.SparseTensor` input support to `tf.keras.layers.Embedding`
layer. The layer now accepts a new boolean argument `sparse`. If
`sparse` is set to True, the layer returns a SparseTensor instead of a
@ -30,7 +32,7 @@
`layers.experimental.SyncBatchNormalization` and suggested to use
`layers.BatchNormalization` with `synchronized=True` instead.
* Updated `tf.keras.layers.BatchNormalization` to support masking of the
inputs when computing the mean and variance.
inputs (`mask` argument) when computing the mean and variance.
* `tf.experimental.dtensor`: