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:

Other resources:

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 into coords so 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

Collection including spikefly/SemanticVLA-TraceX-260K