-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what dataloader to use for torchdata.nodes nodes? #1442
Comments
Hi @keunwoochoi , For your failing examples, can you share a minimum working example, and we can look into it. |
i see. yes but, to clarify @ramanishsingh - you meant, |
from #1389, it seems like |
@keunwoochoi thanks for trying this out! We shoudl clarify this in the documentation, but right now the idea is that torchdata.nodes is a super-set of StatefulDataLoader, ie nodes should be able to do everything torch.utils.DataLoader and StatefulDataLoader should do, but nodes are not designed to be plugged into StatefulDataLoader. cc @scotts on confusion around torchdata vs dataloader v1. |
hi, thanks for reviving torchdata. i was able to move on to
0.10.1
for lots of my existing datapipes. it seems to work pretty nicely.question - am i supposed to use
torchdata.nodes.Loader
ortorchdata.stateful_dataloader.StatefulDataLoader
for my data nodes? or justtorch.utils.data.DataLoader
? i'm getting confused a bit after reading the docs and code. currentlyLoader
works for my iterable data nodes, but with some caveats (no multi processing).The text was updated successfully, but these errors were encountered: