(self, index)
| 101 | return self.bin.shape[0] |
| 102 | |
| 103 | def __getitem__(self, index): |
| 104 | print(f"Get text: {index}") |
| 105 | return self.process_fn(self.bin[index], index) |
| 106 | |
| 107 | |
| 108 | class TSVDataset(Dataset): |
nothing calls this directly
no outgoing calls
no test coverage detected