(self, input1, input2)
| 8 | # self.f = InterpolationLayer() |
| 9 | |
| 10 | def forward(self, input1, input2): |
| 11 | return InterpolationLayer.apply(input1, input2) |
| 12 | |
| 13 | #we actually dont need to write the backward code for a module, since we have |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected