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

Function resnext101_32x8d

Image_Classification/src/models/resnet.py:296–302  ·  view source on GitHub ↗

r"""ResNeXt-101 32x8d model from `"Aggregated Residual Transformation for Deep Neural Networks" `_

(**kwargs)

Source from the content-addressed store, hash-verified

294
295
296def resnext101_32x8d(**kwargs):
297 r"""ResNeXt-101 32x8d model from
298 `"Aggregated Residual Transformation for Deep Neural Networks" <https://arxiv.org/pdf/1611.05431.pdf>`_
299 """
300 kwargs['groups'] = 32
301 kwargs['width_per_group'] = 8
302 return _resnet('resnext101_32x8d', Bottleneck, [3, 4, 23, 3], **kwargs)
303
304
305def wide_resnet50_2(**kwargs):

Callers

nothing calls this directly

Calls 1

_resnetFunction · 0.85

Tested by

no test coverage detected