(self, x)
| 45 | super(ModelNotNeedSimplification, self).__init__() |
| 46 | |
| 47 | def forward(self, x): |
| 48 | return x + 1 |
| 49 | |
| 50 | net = ModelNotNeedSimplification() |
| 51 | dummy_input = torch.randn(2, 3, 4, 5) |
nothing calls this directly
no outgoing calls
no test coverage detected