(self)
| 134 | collate_fn=collate_events) |
| 135 | |
| 136 | def __iter__(self): |
| 137 | for data in self.loader: |
| 138 | data = [d.to(self.device) for d in data] |
| 139 | yield data |
| 140 | |
| 141 | def __len__(self): |
| 142 | return len(self.loader) |
nothing calls this directly
no outgoing calls
no test coverage detected