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

Function resnet101

Image_Classification/src/models/resnet.py:271–276  ·  view source on GitHub ↗

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

(**kwargs)

Source from the content-addressed store, hash-verified

269
270
271def resnet101(**kwargs):
272 r"""ResNet-101 model from
273 `"Deep Residual Learning for Image Recognition" <https://arxiv.org/pdf/1512.03385.pdf>`_
274 """
275 return _resnet('resnet101', Bottleneck, [3, 4, 23, 3],
276 **kwargs)
277
278
279def resnet152(**kwargs):

Callers 2

get_pretrained_modelMethod · 0.90
get_networkFunction · 0.90

Calls 1

_resnetFunction · 0.85

Tested by

no test coverage detected