(self, x)
| 34 | ) |
| 35 | |
| 36 | def forward(self, x): |
| 37 | out = x |
| 38 | out = self.convs(out) |
| 39 | out = out.view(-1, 12*12*64) |
| 40 | out = self.fcs(out) |
| 41 | return out |
| 42 | |
| 43 | |
| 44 | torch_model = Torch_Model() |
nothing calls this directly
no outgoing calls
no test coverage detected