tf.contrib.layers.dropout
Stay organized with collections
Save and categorize content based on your preferences.
Returns a dropout op applied to the input.
tf.contrib.layers.dropout(
inputs, keep_prob=0.5, noise_shape=None, is_training=True,
outputs_collections=None, scope=None, seed=None
)
With probability keep_prob
, outputs the input element scaled up by
1 / keep_prob
, otherwise outputs 0
. The scaling is so that the expected
sum is unchanged.
Args |
inputs
|
The tensor to pass to the nn.dropout op.
|
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.
|
is_training
|
A bool Tensor indicating whether or not the model is in
training mode. If so, dropout is applied and values scaled. Otherwise,
inputs is returned.
|
outputs_collections
|
Collection to add the outputs.
|
scope
|
Optional scope for name_scope.
|
seed
|
A Python integer. Used to create random seeds. See
tf.compat.v1.set_random_seed for behavior.
|
Returns |
A tensor representing the output of the operation.
|
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]