Description Usage Arguments Details
Layer factory function to create a drop-out layer.
1 |
name |
string (optional) the name of the Function instance in the network |
The dropout rate can be specified as the probability of dropping a value (dropout_rate). E.g. Dropout(0.3) means “drop 30 Alternatively, it can also be specified as the probability of keeping a value (keep_prob).
The dropout operation is only applied during training. During testing, this is a no-op. To make sure that this leads to correct results, the dropout operation in training multiplies the result by (1/(1-dropout_rate)).
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.