(self)
| 272 | self.kwargs = {k: tuple(v) if not isinstance(v, str) else v for k, v in kwargs.items()} |
| 273 | |
| 274 | def __len__(self): |
| 275 | return int(self.num_samples) |
| 276 | |
| 277 | def __getitem__(self, idx): |
| 278 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected