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

Function resnet50

Image_Classification/src/models/resnet.py:263–268  ·  view source on GitHub ↗

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

(**kwargs)

Source from the content-addressed store, hash-verified

261
262
263def resnet50(**kwargs):
264 r"""ResNet-50 model from
265 `"Deep Residual Learning for Image Recognition" <https://arxiv.org/pdf/1512.03385.pdf>`_
266 """
267 return _resnet('resnet50', Bottleneck, [3, 4, 6, 3],
268 **kwargs)
269
270
271def resnet101(**kwargs):

Callers 2

get_pretrained_modelMethod · 0.90
get_networkFunction · 0.90

Calls 1

_resnetFunction · 0.85

Tested by

no test coverage detected