(self)
| 312 | self.data = list(class_samples.values()) |
| 313 | |
| 314 | def __len__(self): |
| 315 | return len(self.data) |
| 316 | |
| 317 | def __getitem__(self, idx): |
| 318 | return self.data[idx], self.labels[idx] |
nothing calls this directly
no outgoing calls
no test coverage detected