MCPcopy Create free account
hub / github.com/Mattdl/ContinualPrototypeEvolution / conv3x3

Function conv3x3

model/common.py:43–45  ·  view source on GitHub ↗
(in_planes, out_planes, stride=1)

Source from the content-addressed store, hash-verified

41
42
43def conv3x3(in_planes, out_planes, stride=1):
44 return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,
45 padding=1, bias=False)
46
47
48class BasicBlock(nn.Module):

Callers 2

__init__Method · 0.85
__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected