--- pretty_name: Retargeted Robot Motion Dataset license: other tags: - robotics - motion-capture - robot-motion - imitation-learning - reinforcement-learning dataset_info: features: - name: joints_list dtype: string - name: joint_positions dtype: float32 - name: root_position dtype: float32 - name: root_quaternion dtype: float32 - name: fps dtype: float32 - name: duration dtype: float32 - name: r_forearm dtype: float32 - name: l_forearm dtype: float32 - name: r_sole dtype: float32 - name: l_sole dtype: float32 splits: - name: train num_bytes: null num_examples: null download_size: null dataset_size: null size_categories: - 100K All lists should have consistent lengths across time frames. ### Example ```python { "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.