SVHN Wide Resnet¶
-
class
deepobs.pytorch.testproblems.svhn_wrn164.svhn_wrn164(batch_size, weight_decay=0.0005)[source]¶ DeepOBS test problem class for the Wide Residual Network 16-4 architecture for SVHN.
Details about the architecture can be found in the original paper. A weight decay is used on the weights (but not the biases) which defaults to
5e-4.Training settings recommenden in the original paper:
batch size = 128,num_epochs = 160using the Momentum optimizer with \(\mu = 0.9\) and an initial learning rate of0.01with a decrease by0.1after80and120epochs.Parameters: - batch_size (int) -- Batch size to use.
- weight_decay (float) -- Weight decay factor. Weight decay (L2-regularization)
is used on the weights but not the biases.
Defaults to
5e-4.