(self)
| 4 | |
| 5 | class MyModule(nn.Module): |
| 6 | def __init__(self): |
| 7 | super(MyModule,self).__init__() |
| 8 | self.conv1 = nn.Conv2d(1,3,3) |
| 9 | self.conv2 = nn.Conv2d(2,3,3) |
| 10 | |
| 11 | def forward(self,x): |
| 12 | b,c,h,w = x.shape |
nothing calls this directly
no outgoing calls
no test coverage detected