Dropout is a regularization technique that introduces dynamic sparcity, turning a fully connected layer into a sparsely connected one.
With dropout, every training step, each entire neuron/activation/output vector has probability of being .
At inference time, weights are scaled to .
DropConnect
DropConnect is a regularization technique where each weight+bias has a probability of being .
layer output
layer input
weight matrix
binary marix with connection information
References
https://paperswithcode.com/method/dropconnect
Link to original