Hotteok commited on
Commit
b8b8105
·
verified ·
1 Parent(s): 5cd1f2f

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - robotics
4
+ tags:
5
+ - LeRobot
6
+ - OpenManipulator-X
7
+ - SmolVLA
8
+ ---
9
+
10
+ # OpenManipulator-X Dataset for SmolVLA Fine-tuning
11
+
12
+ This dataset contains demonstrations for the OpenManipulator-X 5-DOF robot arm.
13
+
14
+ ## Dataset Details
15
+ - Robot: OpenManipulator-X (5-DOF)
16
+ - Camera: Single RGB+Depth (4-channel)
17
+ - Task: Random object manipulation/grasping
18
+ - Format: LeRobot v2.1 (Parquet + metadata)
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ from lerobot.datasets.lerobot_dataset import LeRobotDataset
24
+
25
+ dataset = LeRobotDataset("Hotteok/openmanipulator_full_frames_5ep")
26
+ ```
27
+
28
+ ## Training
29
+
30
+ ```bash
31
+ lerobot-train \
32
+ --policy.type smolvla \
33
+ --dataset.repo_id Hotteok/openmanipulator_full_frames_5ep \
34
+ --policy.max_state_dim 5 \
35
+ --policy.max_action_dim 5
36
+ ```