![]() |
Applies dropout both in training and serving, with variable dropout rate.
tf_agents.keras_layers.permanent_variable_rate_dropout.PermanentVariableRateDropout(
rate, permanent=False, **kwargs
)
Initialize this layer the same was as keras.layers.Dropout
, with two notable
differences:
--The parameter rate
can also be a callable.
--The extra boolean parameter permanent
. If set to true, dropout will be
applied both in training and inference.
Args | |
---|---|
seed
|
optional integer, used to create RandomGenerator. |
force_generator
|
boolean, default to False, whether to force the RandomGenerator to use the code branch of tf.random.Generator. |
**kwargs
|
other keyword arguments that will be passed to the parent class |