(self, x, flows)
| 37 | |
| 38 | class Sequential(torch.nn.Sequential): |
| 39 | def forward(self, x, flows): |
| 40 | for module in self: |
| 41 | x = module(x, flows) |
| 42 | return x |
| 43 | |
| 44 | |
| 45 | def interpolate(x, scale_factor=2, mode='nearest'): |
nothing calls this directly
no outgoing calls
no test coverage detected