MCPcopy
hub / github.com/huggingface/pytorch-image-models / dla169

Function dla169

timm/models/dla.py:604–608  ·  view source on GitHub ↗
(pretrained=False, **kwargs)

Source from the content-addressed store, hash-verified

602
603@register_model
604def dla169(pretrained=False, **kwargs) -> DLA: # DLA-169
605 model_args = dict(
606 levels=[1, 1, 2, 3, 5, 1], channels=[16, 32, 128, 256, 512, 1024],
607 block=DlaBottleneck, shortcut_root=True)
608 return _create_dla('dla169', pretrained, **dict(model_args, **kwargs))

Callers

nothing calls this directly

Calls 1

_create_dlaFunction · 0.85

Tested by

no test coverage detected