Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Retargeted Robot Motion Dataset

This dataset provides retargeted motion capture sequences for a variety of robotic platforms. The motion data is derived from the CMU Motion Capture Database and includes a wide range of motion types beyond locomotion β€” such as gestures, interactions, and full-body activities.

The data has been adapted to match the kinematic structure of specific robots, enabling its use in tasks such as:

  • Imitation learning
  • Reinforcement learning
  • Motion analysis
  • Skill learning from demonstration

πŸ“ Dataset Format

Each .npy file contains a dictionary with the following keys:

  • joints_list: list of joint names
  • joint_positions: per-frame joint angle vectors
  • root_position: per-frame 3D position of the robot’s base
  • root_quaternion: per-frame orientation as quaternions (xyzw)
  • fps: sampling rate of the motion (frames per second)
  • duration: total sequence duration in seconds
  • r_forearm, l_forearm: optional 3D positions of the forearms
  • r_sole, l_sole: optional 3D positions of the soles of the feet

All lists should have consistent lengths across time frames.

Example

{
  "joints_list": ["joint_1", "joint_2", ...],
  "joint_positions": [np.array([...]), ...],
  "root_position": [np.array([x, y, z]), ...],
  "root_quaternion": [np.array([x, y, z, w]), ...],
  "fps": 120.0,
  "duration": 3.2
}

πŸ“‚ Repository Structure

The dataset repository is organized by robot model:

.
β”œβ”€β”€ ergocub/
β”‚   β”œβ”€β”€ wave_hand.npy
β”‚   β”œβ”€β”€ walk_forward.npy
β”‚   └── ...
β”œβ”€β”€ another_robot/
β”‚   └── ...
β”œβ”€β”€ README.md

Each folder contains .npy files with motion data retargeted to that specific robot's model.


πŸ“„ License

Original motion capture data Β© Carnegie Mellon University.
Retargeted datasets are provided for research purposes under the BSD 3-Clause license.

Downloads last month
32