MCPcopy Create free account
hub / github.com/CausalLearning/robust-unlearnable-examples / resnet18

Function resnet18

models/resnet.py:147–148  ·  view source on GitHub ↗
(in_dims, out_dims)

Source from the content-addressed store, hash-verified

145
146
147def resnet18(in_dims, out_dims):
148 return ResNet(BasicBlock, [2,2,2,2], in_dims, out_dims, 1)
149
150def wrn34_10(in_dims, out_dims):
151 return WRN([5,5,5], in_dims, out_dims, wide=10)

Callers

nothing calls this directly

Calls 1

ResNetClass · 0.85

Tested by

no test coverage detected