(self, *args, **kwargs)
| 26 | class BaseDataset: |
| 27 | |
| 28 | def __init__(self, *args, **kwargs): |
| 29 | super().__init__() |
| 30 | self.data =[] |
| 31 | self.num_repeat = 1 |
| 32 | |
| 33 | def _preprocess_data(self, data_chunk): |
| 34 | processed = [] |
nothing calls this directly
no outgoing calls
no test coverage detected