Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 616 Bytes

async.rst

File metadata and controls

20 lines (13 loc) · 616 Bytes

AsynchronousLoader

This dataloader behaves identically to the standard pytorch dataloader, but will transfer data asynchronously to the GPU with training. You can also use it to wrap an existing dataloader.

Note

We rely on the community to keep these updated and working. If something doesn't work, we'd really appreciate a contribution to fix!

Example:

dataloader = AsynchronousLoader(DataLoader(ds, batch_size=16), device=device)

for b in dataloader:
    ...

pl_bolts.datamodules.async_dataloader.AsynchronousLoader