MCPcopy Create free account
hub / github.com/Sirwenhao/Deep-Learning-Notes / resnet101

Function resnet101

CV/Pytorch_classification/ResNet/model.py:165–166  ·  view source on GitHub ↗
(num_classes=1000, include_top=True)

Source from the content-addressed store, hash-verified

163 return ResNet(BasicBlock, [3, 4, 6, 3], num_classes=num_classes, include_top=include_top)
164
165def resnet101(num_classes=1000, include_top=True):
166 return ResNet(BasicBlock, [3, 4, 23, 3], num_classes=num_classes, include_top=include_top)
167
168def resnext50_32x4d(num_classes=1000, include_top=True):
169 groups = 32

Callers

nothing calls this directly

Calls 1

ResNetClass · 0.85

Tested by

no test coverage detected