wujiss1 commited on
Commit
935cc2a
·
verified ·
1 Parent(s): e3e85e9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -29
README.md CHANGED
@@ -3,48 +3,43 @@
3
  Official release of the dataset from the paper:
4
  **[Neural Motion Simulator: Pushing the Limit of World Models in Reinforcement Learning](https://arxiv.org/pdf/2504.07095)**
5
 
6
- This dataset provides the training and evaluation data used for the **MoSim (Neural Motion Simulator)** world models.
7
- All trajectories are collected **exclusively using random policies** across multiple standard simulation environments.
8
 
9
  ---
10
 
11
  ## 📦 Dataset Overview
12
 
13
- - **Format**: Parquet files for efficient loading and processing.
14
  - **Contents**:
15
- - State sequences (`qpos`, `qvel`, sensor readings)
16
- - Action sequences (raw control inputs)
17
- - Environment metadata (episode length, environment name)
18
- - **Size**: ~XX GB (after compression)
19
- - **Environments**: Includes standard MuJoCo-based tasks such as `Cheetah`, `Hopper`, `Humanoid`, and `Go2`.
20
 
21
  ---
22
 
23
- ## 📊 Structure
24
 
25
- Each trajectory is stored as a sequence of steps:
26
 
27
- | Field | Shape (per step) | Description |
28
- |----------------|-----------------------|-------------------------------------------|
29
- | `qpos` | *(n_joints,)* | Joint positions |
30
- | `qvel` | *(n_joints,)* | Joint velocities |
31
- | `action` | *(action_dim,)* | Environment action |
32
- | `reward` | *1* | Immediate reward |
33
- | `done` | *1* | Episode termination flag |
34
- | `env_id` | *string* | Environment identifier |
35
 
36
- All episodes are segmented and zero-padded to fixed length for training convenience.
37
 
38
- ---
39
-
40
- ## 📥 Usage
 
 
 
 
 
 
41
 
42
- ```python
43
- from datasets import load_dataset
44
 
45
- # Load the full MoSim dataset
46
- dataset = load_dataset("wujiss1/MoSim_Dataset")
47
 
48
- # Access one environment subset
49
- hopper_data = dataset["train"].filter(lambda x: x["env_id"] == "Hopper")
50
- print(hopper_data[0].keys())
 
3
  Official release of the dataset from the paper:
4
  **[Neural Motion Simulator: Pushing the Limit of World Models in Reinforcement Learning](https://arxiv.org/pdf/2504.07095)**
5
 
6
+ This dataset contains sequential state-action trajectories for **MoSim (Neural Motion Simulator)** world model training.
7
+ All trajectories are collected **from random policies** in classical control and locomotion environments.
8
 
9
  ---
10
 
11
  ## 📦 Dataset Overview
12
 
13
+ - **Format**: `.npz` (NumPy compressed arrays)
14
  - **Contents**:
15
+ - `*_random.npz`: training episodes
16
+ - `*_random_test.npz`: test episodes
17
+ - **Episode length**: 1000 steps per episode
 
 
18
 
19
  ---
20
 
21
+ ## 📊 Data Structure
22
 
23
+ Each `.npz` file contains:
24
 
25
+ | Key | Shape | Description |
26
+ |------------|-------------------------------------|------------------------------------|
27
+ | `states` | *(num_episodes, 1000, state_dim)* | State at each timestep |
28
+ | `actions` | *(num_episodes, 1000, action_dim)* | Action applied at each timestep |
 
 
 
 
29
 
30
+ **State composition**:
31
 
32
+ 1. **Joint DOF (articulated body)**
33
+ - Joint angles *(radians)*
34
+ - Joint angular velocities *(rad/s)*
35
+ 2. **Root DOF (global free body)**
36
+ - Root position *(x, y, z)*
37
+ - Root linear velocity *(vx, vy, vz)*
38
+ 3. **Root Orientation & Rotation**
39
+ - Root rotation quaternion *(qx, qy, qz, qw)*
40
+ - Root angular velocity *(wx, wy, wz)*
41
 
42
+ > ⚡ For manipulation control tasks like `Panda`, only joint angles and velocities are provided.
43
+ > For locomotion tasks like `Humanoid` or `Go2`, full root DOF and velocities are included.
44
 
 
 
45