MCPcopy Index your code
hub / github.com/geekcomputers/Python / ResNet50

Function ResNet50

ML/src/python/neuralforge/models/resnet.py:12–15  ·  view source on GitHub ↗
(num_classes=1000, in_channels=3)

Source from the content-addressed store, hash-verified

10 return ResNet(ResNetBlock, [3, 4, 6, 3], num_classes, in_channels)
11
12def ResNet50(num_classes=1000, in_channels=3):
13 from ..nn.layers import BottleneckBlock
14 from ..nn.convolution import ResNet
15 return ResNet(BottleneckBlock, [3, 4, 6, 3], num_classes, in_channels)

Callers

nothing calls this directly

Calls 1

ResNetClass · 0.85

Tested by

no test coverage detected