(self, x)
| 110 | self.outputs08 = nn.ModuleList(output_list) |
| 111 | |
| 112 | def forward(self, x): |
| 113 | feat1, feat2 = self.conv2(x).split(dim=0, split_size=x.shape[0] // 2) |
| 114 | |
| 115 | outputs08 = [f(x) for f in self.outputs08] |
| 116 | return outputs08, feat1, feat2 |
| 117 | |
| 118 | |
| 119 | if __name__ == '__main__': |
nothing calls this directly
no outgoing calls
no test coverage detected