(self, input_batch: NestedTensor)
| 163 | self.predict_dtypes = [] |
| 164 | |
| 165 | def forward(self, input_batch: NestedTensor) -> tuple[Tensor, NestedTensor]: |
| 166 | y = self.predict(input_batch) |
| 167 | return y.mean(), {} |
| 168 | |
| 169 | def predict(self, input_batch: NestedTensor) -> Tensor: |
| 170 | x = input_batch["x"] |