(self, x)
| 118 | self.name = name |
| 119 | |
| 120 | def forward(self, x): |
| 121 | b0 = self.b0(x) |
| 122 | b1 = self.b1b(self.b1a(x)) |
| 123 | b2 = self.b2b(self.b2a(x)) |
| 124 | b3 = self.b3b(self.b3a(x)) |
| 125 | return torch.cat([b0, b1, b2, b3], dim=1) |
| 126 | |
| 127 | |
| 128 | class InceptionI3d(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected