(self, split_infos)
| 690 | """Union of all splits of the dataset.""" |
| 691 | |
| 692 | def to_absolute(self, split_infos) -> list[_AbsoluteInstruction]: |
| 693 | # Create the union of all splits |
| 694 | split_names = split_infos.keys() |
| 695 | split = AbstractSplit.from_spec('+'.join(split_names)) |
| 696 | return split.to_absolute(split_infos) |
| 697 | |
| 698 | |
| 699 | @dataclasses.dataclass(frozen=True) |
nothing calls this directly
no test coverage detected