View source on GitHub
|
Apply multiplicative 1-centered Gaussian noise.
Inherits From: Layer, Operation
tf.keras.layers.GaussianDropout(
rate, seed=None, **kwargs
)
As it is a regularization layer, it is only active at training time.
Args |
|---|
rate
Dropout).
The multiplicative noise will have
standard deviation sqrt(rate / (1 - rate)).
seed
Call arguments |
|---|
inputs
training
Attributes |
|---|
input
Only returns the tensor(s) corresponding to the first time the operation was called.
output
Only returns the tensor(s) corresponding to the first time the operation was called.
Methods
from_config
@classmethodfrom_config( config )
Creates a layer from its config.
This method is the reverse of get_config,
capable of instantiating the same layer from the config
dictionary. It does not handle layer connectivity
(handled by Network), nor weights (handled by set_weights).
| Args |
|---|
config
| Returns | |
|---|---|
| A layer instance. |
symbolic_call
symbolic_call(
*args, **kwargs
)
View source on GitHub