(self, inputBatch)
| 72 | |
| 73 | |
| 74 | def forward(self, inputBatch): |
| 75 | batch = self.layer1(inputBatch) |
| 76 | batch = self.layer2(batch) |
| 77 | batch = self.layer3(batch) |
| 78 | batch = self.layer4(batch) |
| 79 | outputBatch = self.avgpool(batch) |
| 80 | return outputBatch |
| 81 | |
| 82 | |
| 83 | class GlobalLayerNorm(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected