tf.keras.layers.Masking | TensorFlow v2.0.0 (original) (raw)
tf.keras.layers.Masking
Stay organized with collections Save and categorize content based on your preferences.
Masks a sequence by using a mask value to skip timesteps.
Inherits From: Layer
View aliases
Compat aliases for migration
SeeMigration guide for more details.
tf.compat.v1.keras.layers.Masking
tf.keras.layers.Masking(
mask_value=0.0, **kwargs
)
For each timestep in the input tensor (dimension #1 in the tensor), if all values in the input tensor at that timestep are equal to mask_value
, then the timestep will be masked (skipped) in all downstream layers (as long as they support masking).
If any downstream layer does not support masking yet receives such an input mask, an exception will be raised.
Example:
Consider a Numpy data array x
of shape (samples, timesteps, features)
, to be fed to an LSTM layer. You want to mask timestep #3 and #5 because you lack data for these timesteps. You can:
- Set
x[:, 3, :] = 0.
andx[:, 5, :] = 0.
- Insert a
Masking
layer withmask_value=0.
before the LSTM layer:
model = Sequential()
model.add(Masking(mask_value=0., input_shape=(timesteps, features)))
model.add(LSTM(32))