--- license: apache-2.0 pretty_name: "TacRich-Manip LeRobot v3 — multi-task" task_categories: - robotics size_categories: - 1M=0.5" matplotlib numpy ``` Inspect all keys and their runtime shapes: ```bash python examples/load_lerobot_dataset.py --repo-id Tachintech/TacRich-Manip --episode-index 0 ``` Render front/side/fisheye RGB, lossless uint16 depth, and both tactile maps: ```bash python examples/visualize_episode.py \ --repo-id Tachintech/TacRich-Manip \ --episode-index 0 \ --frame-index 0 \ --output episode0_frame0.png ``` LeRobot loaders normally expose RGB as CHW float tensors. Some torchvision versions expose 16-bit PNG depth as a signed `int16` tensor containing the same bits; the provided visualizer safely reinterprets those bits as `uint16` before plotting. Use the Parquet/Arrow value when exact float64 source timestamps are required, because a generic PyTorch scalar conversion can down-cast them. ## File layout and metadata ```text README.md, LICENSE, CITATION.cff, AUTHORS.md docs/DATASET_SCHEMA.md examples/load_lerobot_dataset.py examples/visualize_episode.py meta/info.json meta/stats.json meta/tasks.parquet meta/task_sources.parquet meta/episodes/chunk-*/file-*.parquet data/chunk-*/file-*.parquet videos//chunk-*/file-*.mp4 ``` `meta/info.json` is the canonical feature/path declaration, `meta/stats.json` contains global statistics, `meta/tasks.parquet` maps task text to IDs, and `meta/task_sources.parquet` preserves physical source-directory provenance (including the ten inputs grouped into `teleoperation/test`). `meta/episodes/**` maps every episode to frame and video ranges. > **Depth-statistics note:** In this release, LeRobot's generic image-statistics path recorded depth as three-channel normalized [0,1] image statistics. Those `meta/stats.json` depth values are not metric millimetre statistics and must not normalize uint16 depth. The stored PNG values and the provided visualizer remain exact. ## Quality, provenance, and limitations - Conversion checks required fields, shapes, finite pose values, unit quaternions, task/episode counts, and every metadata-referenced shard. - Teleoperation actions come only from the migrated absolute `arm_target_*` columns. Raw `action_delta_*` is provenance and is never consumed by this converter. An action is a command at time `t`; servo latency means it is not expected to equal the next measured state exactly. - RGB video is lossy AV1; depth and low-dimensional fields are lossless apart from the documented float32 casts. - Sensor streams are asynchronous; use the source timestamps to measure age or alignment instead of assuming simultaneous exposure. - Tactile values are calibrated sensor responses, not force in newtons unless a separate force calibration is applied. - Real-robot trajectories may contain occlusion, lighting changes, contact transients, operator variation, and task failures. Review episodes before safety-critical use. ## Intended use and safety Intended uses include robot imitation learning, multimodal/tactile representation learning, contact-rich manipulation, synchronization research, and reproducible format conversion. The dataset does not constitute a safety controller or deployment guarantee. Validate workspace limits, action scaling, coordinate frames, and emergency-stop behavior on the target robot before any real-world execution. ## License, attribution, and citation This LeRobot dataset is distributed under the [Apache License 2.0](LICENSE). It is jointly developed by Tachin Technology, Qingzhu Robotics, and the TacRich-Manip Dataset Team; Tachin Technology is a co-development partner and hardware provider. Contributor and institutional attribution is in [AUTHORS.md](AUTHORS.md). Cite the dataset and record the exact Hugging Face commit revision used for experiments; machine-readable citation metadata is in [CITATION.cff](CITATION.cff). ```bibtex @dataset{tacrich_manip_multi-task_2026, author = {{Tachin Technology} and {Qingzhu Robotics} and {TacRich-Manip Dataset Team}}, title = {{TacRich-Manip LeRobot v3: multiple tasks}}, year = {2026}, version = {0.2.0}, url = {https://huggingface.co/datasets/Tachintech/TacRich-Manip}, note = {Dataset version 0.2.0, accessed via Hugging Face. Please report the immutable commit revision used for experiments.} } ``` ## Format references - [LeRobot Dataset v3 specification](https://huggingface.co/docs/lerobot/en/lerobot-dataset-v3) - [Hugging Face dataset card guidance](https://huggingface.co/docs/hub/datasets-cards) - [LeRobot ALOHA insertion dataset](https://huggingface.co/datasets/lerobot/aloha_sim_insertion_human)