Dropout¶
Apply dropout regularization to the data.
This will randomly drop out a given element with probability given by the dropout rate. As a result, the downstream nodes will see a different input each time, and the network will be forced to learn robust representations that are not overly dependent on any one element. More Info... Version 0.2.1
Ports/Properties¶
data¶
Data to process.
random¶
Random number key to use.
is_training¶
Whether the node is used in training mode.
rate¶
Dropout rate. The probability of dropping out a given element.
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.