(self, x, t=0)
| 60 | self.sample_scheme = SampleScheme(self, sample_qi_mode=args.sample_qi_mode) |
| 61 | |
| 62 | def forward(self, x, t=0): |
| 63 | output = self.net(x) |
| 64 | return output |
| 65 | |
| 66 | def forward_training(self, x): |
| 67 | return self.forward(x) |
no outgoing calls
no test coverage detected