(self)
| 71 | raise NotImplementedError("Implement preprocessing per §{{SECTION}}") |
| 72 | |
| 73 | def __len__(self) -> int: |
| 74 | return len(self.samples) |
| 75 | |
| 76 | def __getitem__(self, idx: int) -> Dict[str, torch.Tensor]: |
| 77 | """Load and preprocess a single sample. |
nothing calls this directly
no outgoing calls
no test coverage detected