vgg11
Implementation of VGG proposed in Very Deep Convolutional Networks For
Large-Scale Image Recognition
VGG.vgg11()
VGG.vgg13()
VGG.vgg16()
VGG.vgg19()
VGG.vgg11_bn()
VGG.vgg13_bn()
VGG.vgg16_bn()
VGG.vgg19_bn()
Please be aware that the [bn]{.title-ref} models uses BatchNorm but
they are very old and people back then don't know the bias is
superfluous in a conv followed by a batchnorm.
Examples:
VGG.vgg11(activation = nn.SELU)
VGG.vgg11(n_classes=100)
from nn.models.classification.senet import SENetBasicBlock
VGG.vgg11(block=SENetBasicBlock)