VGG-13 with BatchNorm — feature-extracting backbone.
Builds a VGG with the VGG-13 topology
arch=(2, 2, 2, 2, 2) and lucid.nn.BatchNorm2d after
each Conv + ReLU pair. Approximately 133.0 M parameters.
Model Size
Parameters
pretrainedbool= FalseReserved for future pretrained-weight loading. Currently
ignored.
**overridesobject= {}Keyword overrides forwarded into
VGGConfig.Returns
VGGBackbone with the VGG-13-BN configuration applied (or with
overrides merged on top of it).
Examples
>>> import lucid
>>> from lucid.models.vision.vgg import vgg_13_bn
>>> model = vgg_13_bn()
>>> x = lucid.randn(1, 3, 224, 224)
>>> out = model(x)
>>> out.last_hidden_state.shape
(1, 512, 7, 7)