-
Notifications
You must be signed in to change notification settings - Fork 772
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
How to make a custom LeRobotDataset with v2? #547
Comments
okay so I've found a work around for now. I initialize an empty dataset and add the frames to it, and then I can load it after calling dataset.consolidate(). If this is a proper way to do it, pls lmk and I'll make a PR with updates to the docs. Otherwise please let me know what the right way to do this is. Thank you! I'll update this issue with my code once I've cleaned it up. |
I encountered the same issue. |
@aliberts i also got the same issue, the documentation on how to generate custom dataset is not up to date now (the code doesn't run anymore). could you please up the instruction and relevant scripts for custom dataset generation? thanks |
Hey there, Basically, you need to create a new empty dataset using You can find more info about the changes of this new api in the PR (#461) We will remove |
Will update the Readme soon! |
Hi folks, thanks for the amazing open source work!
I am trying to make a custom dataset to use with the LeRobotDataset format.
The readme says to copy the example scripts here which I've done, and I have a working format script of my own.
lerobot/README.md
Line 323 in 8e7d697
but when it comes time to create the dataset, the
push_dataset_to_hub.py
usesLeRobotDataset.from_preloaded
which is no longer supported in dataset V2lerobot/lerobot/scripts/push_dataset_to_hub.py
Line 216 in 8e7d697
So I'm just wondering what the proper way of loading your own custom local dataset is?
Thank you in advance for your help!
The text was updated successfully, but these errors were encountered: