(self)
| 229 | assert len(self.prompt_dataset) == len(self.answer_dataset) |
| 230 | |
| 231 | def __len__(self): |
| 232 | return len(self.prompt_dataset) |
| 233 | |
| 234 | def __getitem__(self, idx): |
| 235 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected