The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
pusht-lerobot-lancedb (frames / JPEG)
A lerobot-lancedb-format Lance copy of
lerobot/pusht. One row per frame; per-frame
JPEG bytes stored inline.
Not to be confused with
lance-format/lerobot-pusht-lance, which uses a different three-table schema (frames/episodes/videos) and is not loadable withlerobot-lancedb. This repo is specifically the layout produced bylerobot-convert-to-lance.
Load
from lerobot_lancedb import LeRobotLanceDataset
ds = LeRobotLanceDataset(repo_id="lance-format/pusht-lerobot-lancedb")
print(len(ds)) # 25_650 frames
print(ds[0]["observation.image"].shape) # torch.Size([3, 96, 96])
Lance streams per-frame bytes via byte-range fetches from the Hub β no full-dataset download.
Repro
pip install git+https://github.com/lancedb/lerobot-lancedb.git
lerobot-convert-to-lance \
--repo-id=lerobot/pusht \
--output=./pusht-lerobot-lancedb \
--table-name=pusht-lerobot-lancedb \
--jpeg-quality=95
Layout
pusht-lerobot-lancedb/
βββ meta/ # standard LeRobotDataset metadata sidecar
β βββ info.json
β βββ episodes.jsonl
β βββ stats.json
β βββ tasks.jsonl
βββ pusht-lerobot-lancedb.lance/ # single Lance table, one row per frame
Columns: episode_index, frame_index, index, timestamp, task_index,
observation.state, action, observation.image (JPEG bytes, lossy q=95).
Size: ~60 MB. Companion video-blob layout (bit-exact pixels, ~8 MB) at
lance-format/pusht-lerobot-lancedb-video.
- Downloads last month
- 90