(self)
| 273 | return kid_scores.mean(), kid_scores.std(unbiased=False) |
| 274 | |
| 275 | def reset(self) -> None: |
| 276 | if not self.reset_real_features: |
| 277 | # remove temporarily to avoid resetting |
| 278 | value = self._defaults.pop("real_features") |
| 279 | super().reset() |
| 280 | self._defaults["real_features"] = value |
| 281 | else: |
| 282 | super().reset() |
nothing calls this directly
no outgoing calls
no test coverage detected