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 namesjoint_positions
: per-frame joint angle vectorsroot_position
: per-frame 3D position of the robotβs baseroot_quaternion
: per-frame orientation as quaternions (xyzw
)fps
: sampling rate of the motion (frames per second)duration
: total sequence duration in secondsr_forearm
,l_forearm
: optional 3D positions of the forearmsr_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