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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -1
README.md CHANGED
@@ -1,9 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # 🗂️ MoSim Dataset
2
 
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
  ---
@@ -42,4 +61,15 @@ Each `.npz` file contains:
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
 
 
 
1
+ ---
2
+ dataset_name: MoSim Dataset
3
+ language:
4
+ - en
5
+ license: mit
6
+ tags:
7
+ - reinforcement-learning
8
+ - world-model
9
+ - dynamics-simulation
10
+ - motion
11
+ - state-action
12
+ - npz
13
+ task_categories:
14
+ - reinforcement-learning
15
+ pretty_name: MoSim Dataset
16
+ size_categories:
17
+ - 1K<n<10K
18
+ ---
19
+
20
  # 🗂️ MoSim Dataset
21
 
22
  Official release of the dataset from the paper:
23
  **[Neural Motion Simulator: Pushing the Limit of World Models in Reinforcement Learning](https://arxiv.org/pdf/2504.07095)**
24
 
25
+ This dataset contains sequential **state-action trajectories** for training and evaluating **MoSim (Neural Motion Simulator)** world models.
26
  All trajectories are collected **from random policies** in classical control and locomotion environments.
27
 
28
  ---
 
61
  > ⚡ For manipulation control tasks like `Panda`, only joint angles and velocities are provided.
62
  > ⚡ For locomotion tasks like `Humanoid` or `Go2`, full root DOF and velocities are included.
63
 
64
+ ---
65
+
66
+ ## 📥 Usage Example
67
+
68
+ ```python
69
+ import numpy as np
70
+
71
+ data = np.load("acrobot_random.npz")
72
+ states = data["states"] # shape: (num_episodes, 1000, state_dim)
73
+ actions = data["actions"] # shape: (num_episodes, 1000, action_dim)
74
 
75
+ print(states.shape, actions.shape)