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

Function resnet152

Image_Classification/src/models/resnet.py:279–284  ·  view source on GitHub ↗

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

(**kwargs)

Source from the content-addressed store, hash-verified

277
278
279def resnet152(**kwargs):
280 r"""ResNet-152 model from
281 `"Deep Residual Learning for Image Recognition" <https://arxiv.org/pdf/1512.03385.pdf>`_
282 """
283 return _resnet('resnet152', Bottleneck, [3, 8, 36, 3],
284 **kwargs)
285
286
287def resnext50_32x4d(**kwargs):

Callers 1

get_networkFunction · 0.90

Calls 1

_resnetFunction · 0.85

Tested by

no test coverage detected