MCPcopy Create free account
hub / github.com/AtlasAnalyticsLab/AdaFisher / resnet18

Function resnet18

Image_Classification/src/models/resnet.py:243–248  ·  view source on GitHub ↗

r"""ResNet-18 model from `"Deep Residual Learning for Image Recognition" `_

(**kwargs)

Source from the content-addressed store, hash-verified

241
242
243def resnet18(**kwargs):
244 r"""ResNet-18 model from
245 `"Deep Residual Learning for Image Recognition" <https://arxiv.org/pdf/1512.03385.pdf>`_
246 """
247 return _resnet('resnet18', BasicBlock, [2, 2, 2, 2],
248 **kwargs)
249
250
251def resnet34(pretrained=False, progress=True, **kwargs):

Callers 1

get_networkFunction · 0.90

Calls 1

_resnetFunction · 0.85

Tested by

no test coverage detected