Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot extract the features (columns) for the split 'train' of the config 'default' of the dataset.
Error code:   FeaturesError
Exception:    HfHubHTTPError
Message:      Client error '404 Not Found' for url 'https://cas-bridge-direct.xethub.hf.co/xet-bridge-us/6a5b0849bdf91def09f43777/d5c08264b3a53d06a4ca66086c466cd0aac1f6b4833949345731861f20cc45dd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20260718%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260718T051013Z&X-Amz-Expires=3600&X-Amz-Signature=b9baba8bd7d8fb338d460f6240ed3ab9b39d493ef318fa22527713c82003d01c&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=app%3A6241c288797aadd4ac9dd1a9&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27index.csv%3B%20filename%3D%22index.csv%22%3B&response-content-type=text%2Fcsv&x-amz-checksum-mode=ENABLED&x-id=GetObject'
For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404

request_id: 01KXST3N9G1N83YYQA27SQXXSG; (1) not found
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 761, in hf_raise_for_status
                  response.raise_for_status()
                  ~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/httpx/_models.py", line 829, in raise_for_status
                  raise HTTPStatusError(message, request=request, response=self)
              httpx.HTTPStatusError: Client error '404 Not Found' for url 'https://cas-bridge-direct.xethub.hf.co/xet-bridge-us/6a5b0849bdf91def09f43777/d5c08264b3a53d06a4ca66086c466cd0aac1f6b4833949345731861f20cc45dd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20260718%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260718T051013Z&X-Amz-Expires=3600&X-Amz-Signature=b9baba8bd7d8fb338d460f6240ed3ab9b39d493ef318fa22527713c82003d01c&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=app%3A6241c288797aadd4ac9dd1a9&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27index.csv%3B%20filename%3D%22index.csv%22%3B&response-content-type=text%2Fcsv&x-amz-checksum-mode=ENABLED&x-id=GetObject'
              For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 243, in compute_first_rows_from_streaming_response
                  iterable_dataset = iterable_dataset._resolve_features()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 4379, in _resolve_features
                  features = _infer_features_from_batch(self.with_format(None)._head())
                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2661, in _head
                  return next(iter(self.iter(batch_size=n)))
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2839, in iter
                  for key, pa_table in ex_iterable.iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2377, in _iter_arrow
                  yield from self.ex_iterable._iter_arrow()
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/csv/csv.py", line 196, in _generate_tables
                  csv_file_reader = pd.read_csv(file, iterator=True, dtype=dtype, **self.config.pd_read_csv_kwargs)
                File "/usr/local/lib/python3.14/site-packages/datasets/streaming.py", line 73, in wrapper
                  return function(*args, download_config=download_config, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 1279, in xpandas_read_csv
                  return pd.read_csv(xopen(filepath_or_buffer, "rb", download_config=download_config), **kwargs)
                         ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1026, in read_csv
                  return _read(filepath_or_buffer, kwds)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 620, in _read
                  parser = TextFileReader(filepath_or_buffer, **kwds)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1620, in __init__
                  self._engine = self._make_engine(f, self.engine)
                                 ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1898, in _make_engine
                  return mapping[engine](f, **self.options)
                         ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 93, in __init__
                  self._reader = parsers.TextReader(src, **kwds)
                                 ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "pandas/_libs/parsers.pyx", line 574, in pandas._libs.parsers.TextReader.__cinit__
                File "pandas/_libs/parsers.pyx", line 663, in pandas._libs.parsers.TextReader._get_header
                File "pandas/_libs/parsers.pyx", line 874, in pandas._libs.parsers.TextReader._tokenize_rows
                File "pandas/_libs/parsers.pyx", line 891, in pandas._libs.parsers.TextReader._check_tokenize_status
                File "pandas/_libs/parsers.pyx", line 2053, in pandas._libs.parsers.raise_parser_error
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 844, in read_with_retries
                  out = read(*args, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_file_system.py", line 1238, in read
                  return super().read(length)
                         ~~~~~~~~~~~~^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/fsspec/spec.py", line 1897, in read
                  out = self.cache._fetch(self.loc, self.loc + length)
                File "/usr/local/lib/python3.14/site-packages/fsspec/caching.py", line 234, in _fetch
                  self.cache = self.fetcher(start, end)  # new block replaces old
                               ~~~~~~~~~~~~^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_file_system.py", line 1195, in _fetch_range
                  hf_raise_for_status(r)
                  ~~~~~~~~~~~~~~~~~~~^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 877, in hf_raise_for_status
                  raise _format(HfHubHTTPError, str(e), response) from e
              huggingface_hub.errors.HfHubHTTPError: Client error '404 Not Found' for url 'https://cas-bridge-direct.xethub.hf.co/xet-bridge-us/6a5b0849bdf91def09f43777/d5c08264b3a53d06a4ca66086c466cd0aac1f6b4833949345731861f20cc45dd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=cas%2F20260718%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260718T051013Z&X-Amz-Expires=3600&X-Amz-Signature=b9baba8bd7d8fb338d460f6240ed3ab9b39d493ef318fa22527713c82003d01c&X-Amz-SignedHeaders=host&X-Xet-Cas-Uid=app%3A6241c288797aadd4ac9dd1a9&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27index.csv%3B%20filename%3D%22index.csv%22%3B&response-content-type=text%2Fcsv&x-amz-checksum-mode=ENABLED&x-id=GetObject'
              For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404
              
              request_id: 01KXST3N9G1N83YYQA27SQXXSG; (1) not found

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.

ChingMu 1000-Hour Embodied Motion Dataset

High-precision optical motion capture data for humanoid robots, dexterous hands, embodied AI, and virtual production.

Duration 1000+ hours @ 120 Hz
**Scenarios ** 15+ real-world scenes
**Tasks ** 500+ standardized tasks
Objects 200+ tracked props (6D pose)
Modalities Skeleton · Finger · Object 6D · Video · Labels
**Formats ** BVH · Retargeted CSV · NPZ

Access note: This dataset is fully open and publicly accessible.


Key Features

  • Optical ground truth – sub-mm accuracy, 120 fps, no estimation errors.

  • Dexterous hands – 20+ DoF per hand, synchronized with object 6DOP pose.

  • Robot-ready – pre-retargeted to Unitree G1; custom retargeting available.

  • Real-world diversity – 15+ scenarios, 500+ tasks, 200+ objects.

  • Multi-modal – full-body skeleton, finger motion, object pose, multi-view video, semantic labels.

  • Quality assured – every take passes automated cleaning + manual inspection; quality flags provided.


Dataset Summary

ChingMu 1000H is an optical motion capture dataset designed for training and validating embodied AI and humanoid robot controllers. It covers full-body skeleton, finger articulation, object 6D pose, multi-view video, and semantic labels across 15+ real-world scenarios (industrial, household, retail, healthcare, logistics, agriculture, performance). All data is cleaned, quality-assessed, and robot-retargeted.


Data Format Specifications

Component Format Details
Raw motion .bvh Y-up, 120 fps, ZYX rotation, cm, 47–67 joints
Retargeted trajectories .csv Root position (m), quaternion, joint angles (rad)
Object 6D pose .csv Position (m) + quaternion, 120 Hz
Multi-view video .mp4 4–8 cameras, co-registered
Semantic labels .jsonl Task, scenario, action, object

🎥 Preview Video

Watch a short demonstration of the motion capture data in action:

Demonstration of full-body motion capture with real-time skeleton overlay and object tracking.

Intended Uses

  • Imitation learning / motion policy training for humanoids

  • Dexterous manipulation datasets (hand-object interaction)

  • Motion generation & retrieval (text/motion cross-modal)

  • Sim-to-real validation (MuJoCo via retargeted trajectories)

  • Virtual production & animation reference


Full Taxonomy (abridged)

  • Locomotion → walk, jog, crouch-walk...

  • Manipulation (whole-body) → shelf-pick-place...

  • Dexterous Hand → pinch, precision-grasp...

  • Tool Use → screwdriver, wrench...

  • Object Interaction → door-open/close...

  • Social / Contact → handoff-object...、

  • Performance → dance, martial-arts...

👀 Try it live: Use the Dataset Preview panel at the top of this page to filter and explore the actual index table. Select the metadata config to browse available takes.

ℹ️ The full index with all rows is best viewed locally. Download metadata/index.csv to open in Excel or pandas for complete filtering.


🖥️ Interactive Showcase

Visit our dedicated showcase website for interactive demos, comparison videos, and detailed visualizations:

Visit Showcase

Includes: trailer video, modality breakdowns, robot retargeting comparisons, and more.


🆕 Open-Source Release: Unitree G1 Retargeted Data

We are releasing 100 hours of robot-ready motion trajectories retargeted to the Unitree G1 humanoid. All data is provided in CSV format under the samples/ directory. Please indicate the source of the data when using it: from Chingmu.

Quick Start

pip install huggingface_hub
from huggingface_hub import hf_hub_download

repo_id = "CMRobot/MotionDecode"
file_path = hf_hub_download(
    repo_id=repo_id,
    filename="samples/1.1.Basic_Movement_Category/1.1.1.High_Dynamic_Movement/1.1.1.1.Standing_High_Jump/BM_Standing_High_Jump_00001.csv",
    repo_type="dataset",
    local_dir="./robot_samples"
)
print(f"Downloaded: {file_path}")

Quality & Limitations

Quality controls: marker swap correction, gap-filling (≤6 frames), foot skating detection, manual review. Flags: pass, warning, fail.

Accuracy: joint error <1mm, object pose ±2mm / ±0.5°, temporal sync <1 frame.

Limitations: performer age skew (20–35), object accuracy varies with marker cluster size.


Get Full Dataset

The entire dataset is publicly available here. If you have any questions about the dataset or would like to know more information, please contact us through the following channels:

  • For Chinese users: Scan the QR code below to contact us via WeChat, and include in the remarks the name of your organization, your name, and the main purpose.
alt text

For international users: Join our Discord community

Discord

Alternatively, you can click the "Request access" button on the right side of this page to automatically gain download permissions for the complete dataset.

Or email us at: MotionDecode@chingmu.com

We look forward to collaborating with researchers and industry partners!

Downloads last month
5,804