You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I build a dataset with a sequence of images (like frames), everything works fine. But if I tranfer it to a pytorch dataloader, the loader can only return the first element of the sequence.
Hey @wjfwzzc. Unfortunately, there's a fundamental issue with supporting sequences in the python implementation of our dataloader, so we've decided not to support them for now, and we will add appropriate error messages so you don't encounter the issue above.
Sequences is supported in the c++ dataloader (ds.dataloader() - details here), but this dataloader is only available if you use datasets hosted by Activeloop, or is you are on the Growth or Enterprise plan.
🐛🐛 Bug Report
⚗️ Current Behavior
When I build a dataset with a sequence of images (like frames), everything works fine. But if I tranfer it to a pytorch dataloader, the loader can only return the first element of the sequence.
Input Code
"Creating Datasets with Sequences" official colab example
Append following code to the end:
It returns:
But I hope It returns something like:
The text was updated successfully, but these errors were encountered: