Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Dropout Update

Choose a tag to compare

@matiasvlevi matiasvlevi released this 29 Aug 17:29

Changes

  • Options now use less conditionals
  • Added a new dropout option, which allows you to set a value in between 0 and 1 to determine the chance of a neuron being idle during a backward pass.

Here is an example with 10% chance a neuron becomes inactive

nn.backpropagate([your_inputs],[your_outputs],{ dropout : 0.1 });

Dropout

image