tf.contrib.nn.alpha_dropout
Computes alpha dropout.
tf.contrib.nn.alpha_dropout(
x, keep_prob, noise_shape=None, seed=None, name=None
)
Alpha Dropout is a dropout that maintains the self-normalizing property. For
an input with zero mean and unit standard deviation, the output of
Alpha Dropout maintains the original mean and standard deviation of the input.
See Self-Normalizing Neural Networks
Args |
x
|
A tensor.
|
keep_prob
|
A scalar Tensor with the same type as x. The probability
that each element is kept.
|
noise_shape
|
A 1-D Tensor of type int32 , representing the
shape for randomly generated keep/drop flags.
|
seed
|
A Python integer. Used to create random seeds. See
tf.compat.v1.set_random_seed for behavior.
|
name
|
A name for this operation (optional).
|
Returns |
A Tensor of the same shape of x .
|
Raises |
ValueError
|
If keep_prob is not in (0, 1] .
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[null,null,["Last updated 2020-10-01 UTC."],[],[]]