PVT-Tiny backbone — alias for pvt_v2_b1.
Backwards-compatible alias kept for users on older releases that
referred to the ~14M-parameter variant as "PVT-Tiny". Identical
to pvt_v2_b1 in every respect.
Model Size
Parameters
pretrainedbool= FalseIf
True, loads ImageNet-1k pretrained weights when
available. Defaults to False.**overridesobject= {}Keyword overrides on top of the canonical PVT v2-B1 config.
Returns
PVTA PVT backbone returning a flat
feature.
Examples
>>> import lucid
>>> from lucid.models.vision.pvt import pvt_tiny
>>> model = pvt_tiny()
>>> x = lucid.randn(1, 3, 224, 224)
>>> model.forward_features(x).shape
(1, 512)See Also
pvt_v2_b1—The canonical factory this alias forwards to.