(self, chosen_dataset)
| 38 | class PromptDataset(Dataset): |
| 39 | |
| 40 | def __init__(self, chosen_dataset) -> None: |
| 41 | super().__init__() |
| 42 | self.dataset = chosen_dataset |
| 43 | |
| 44 | def __len__(self): |
| 45 | length = len(self.dataset) |
nothing calls this directly
no outgoing calls
no test coverage detected