(self)
| 281 | return self |
| 282 | |
| 283 | def __next__(self): |
| 284 | # logging.debug(f"before next(dataloader_iter): {psutil.virtual_memory().available / (1024 ** 2)} MB") |
| 285 | batch_data = next(self.dataloader_iter) |
| 286 | # logging.debug(f"after next(dataloader_iter): {psutil.virtual_memory().available / (1024 ** 2)} MB") |
| 287 | return batch_data # output defined by the collate_fn |
nothing calls this directly
no outgoing calls
no test coverage detected