The dataset is currently empty. Upload or create new data files. Then, you will be able to explore them in the Dataset Viewer.
SemanticVLA β TraceX 260K
π§ Placeholder repository. The URL is stable and safe to embed in posters / slides; data will be uploaded incrementally per the release roadmap.
SemanticVLA-TraceX-260K aggregates four large-scale manipulation datasets, converted to the LeRobot format and augmented with dense end-effector trace annotations that align to every (episode, step) index. It is the supervision signal used to train the trace head and the trace-conditioned Latent Action Model (LAM) in SemanticVLA.
This repository hosts the all-in-one bundle. If you only need a single subset, prefer the dedicated per-dataset repos β they share the same schema and are bit-identical to the corresponding subdirectories here:
- π€
SemanticVLA-Bridge-LeRobotβ BridgeData V2, WidowX, ~53k episodes - π€
SemanticVLA-Fractal-LeRobotβ RT-1 / Fractal, Google Robot, ~87k episodes - π€
SemanticVLA-BCZ-LeRobotβ BC-Z, 39,350 episodes - π€
SemanticVLA-DROID-LeRobotβ DROID, Franka Panda, partial release first
Other resources:
- Code: https://github.com/Fei-Ni/SemanticVLA_Offcial
- Checkpoints: https://hf.co/collections/spikefly/semanticvla-model-zoo
- Collection Β· Datasets: https://hf.co/collections/spikefly/semanticvla-datasets
- Collection Β· Model Zoo: https://hf.co/collections/spikefly/semanticvla-model-zoo
Sub-datasets
| Subset | Robot | Episodes | Frames | Source |
|---|---|---|---|---|
bridge_orig |
WidowX | ~53,000 | ~2.0M | BridgeData V2 (OXE bridge_orig) |
fractal20220817 |
Google Robot | ~87,000 | ~3.8M | RT-1 (OXE fractal20220817_data) |
bc_z |
xArm | ~39,000 | ~5.5M | BC-Z (OXE bc_z) |
droid |
Franka | ~92,000 | ~28M | DROID (partial release first) |
The exact subset sizes will be finalized in the dataset card upon upload.
Planned layout
SemanticVLA-TraceX-260K/
βββ bridge_orig/ # LeRobot dataset
β βββ meta/
β βββ data/
β βββ videos/
βββ fractal20220817/ # LeRobot dataset
βββ bc_z/ # LeRobot dataset
βββ droid/ # LeRobot dataset (partial first)
βββ traces/ # Per-dataset trace NPY index
β βββ bridge_coords.npy
β βββ bridge_offsets.npy
β βββ bridge_present.npy
β βββ fractal_coords.npy
β βββ fractal_offsets.npy
β βββ fractal_present.npy
β βββ bcz_coords.npy
β βββ bcz_offsets.npy
β βββ bcz_present.npy
βββ README.md
Every LeRobot sub-dataset follows the standard info.json / episodes.jsonl / tasks.jsonl / stats.json / modality.json schema. The shared trace index uses memory-mapped NPY arrays:
<name>_coords.npyβ (T, 2) flat array of trace(x, y)coordinates in image space.<name>_offsets.npyβ per-episode offset intocoordsso a single(episode, step)lookup is O(1).<name>_present.npyβ boolean mask of which episodes have a trace.
A minimal Python loader will be shipped with the code repo.
How to use (placeholder API)
from huggingface_hub import snapshot_download
local_root = snapshot_download(
repo_id="spikefly/SemanticVLA-TraceX-260K",
repo_type="dataset",
allow_patterns=["bridge_orig/*", "traces/bridge_*"],
)
# then load with `lerobot.common.datasets.lerobot_dataset.LeRobotDataset`
Citation
@misc{semanticvla2026,
title = {SemanticVLA: Semantic Vision-Language-Action Models with Trace-Conditioned Latent Action Tokens},
author = {SemanticVLA Authors},
year = {2026},
url = {https://github.com/Fei-Ni/SemanticVLA_Offcial}
}
Please also cite the original dataset papers (BridgeData V2, RT-1 / Fractal, BC-Z, DROID, Open X-Embodiment) when using individual subsets.
License
Released under the MIT License, subject to the upstream licenses of each constituent dataset.
- Downloads last month
- 18