CoolFace
Datasetpublic

lance-format/koch_pick_place_5_lego-lance

koch_pick_place_5_lego, stored in Lance lerobot/koch_pick_place_5_lego converted to the Lance layout that LeRobot's LanceDBDataset reads natively. Same meta/ sidecar as the original, tabular features in frames.lance, encoded videos in a videos.lance blob v2 column. from lerobot.datasets import LeRobotDataset # not needed, shown for contrast from lerobot.datasets import LanceDBDataset ds = LanceDBDataset("lance-format/koch_pick_place_5_lego-lance") # streams tables from the… See the full description on the dataset page: https://huggingface.co/datasets/lance-format/koch_pick_place_5_lego-lance.

sourceHugging Faceapache-2.0updated 11d agoView on Hugging Face
0likes499downloads
Dataset Card

kochpickplace5lego, stored in Lance

lerobot/koch_pick_place_5_lego converted to the Lance layout that LeRobot's LanceDBDataset reads natively. Same meta/ sidecar as the original, tabular features in frames.lance, encoded videos in a videos.lance blob v2 column.

python
from lerobot.datasets import LeRobotDataset  # not needed, shown for contrast
from lerobot.datasets import LanceDBDataset

ds = LanceDBDataset("lance-format/koch_pick_place_5_lego-lance")  # streams tables from the Hub, only meta/ is downloaded
item = ds[0]

Or just point training at it. The dataset factory detects the format automatically:

bash
lerobot-train --dataset.repo_id=lance-format/koch_pick_place_5_lego-lance ...

Requires lancedb>=0.35.0b2 (pip install --pre --extra-index-url https://pypi.fury.io/lancedb/ lancedb) and the lance-dataloader branch of LeRobot until the upstream PR lands.