(self)
| 95 | logger.info(f"Load data successfully, total {len(self.data)} training samples") |
| 96 | |
| 97 | def __len__(self): |
| 98 | return len(self.data) |
| 99 | |
| 100 | def __getitem__(self, index): |
| 101 | data = copy.deepcopy(self.data[index]) |
nothing calls this directly
no outgoing calls
no test coverage detected