(self)
| 125 | |
| 126 | @property |
| 127 | def split(self) -> dict[str, list[int]]: |
| 128 | if self._split is None: |
| 129 | self._split = self.load_split(self._project_config, self._trainset_index, self.shuffle) |
| 130 | |
| 131 | return self._split |
| 132 | |
| 133 | def scorer( |
| 134 | self, |
no test coverage detected