chocolat-nya commited on
Commit
8df9e31
·
verified ·
1 Parent(s): d714cc4

Add dataset card with v3.0 version tag information and usage instructions

Browse files
Files changed (1) hide show
  1. README.md +121 -0
README.md ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ tags:
6
+ - robotics
7
+ - lerobot
8
+ - imitation-learning
9
+ - cable-untangling
10
+ - yaskawa
11
+ pretty_name: Yaskawa Cable Untangling Dataset (Small)
12
+ size_categories:
13
+ - 10K<n<100K
14
+ ---
15
+
16
+ # Yaskawa Cable Untangling Dataset (Small)
17
+
18
+ This is a smaller version of the Yaskawa cable untangling dataset containing 3 episodes. This dataset is useful for testing and development. For the full dataset with 50 episodes, see [chocolat-nya/yaskawa-untangle-20260309-144410](https://huggingface.co/datasets/chocolat-nya/yaskawa-untangle-20260309-144410).
19
+
20
+ ## Dataset Details
21
+
22
+ - **Total Episodes**: 3
23
+ - **Total Frames**: 14,889
24
+ - **Robot**: Yaskawa 7-axis manipulator
25
+ - **Task**: Cable untangling task
26
+ - **Collection Method**: Direct teaching (teleoperation)
27
+ - **FPS**: 30
28
+ - **Duration**: ~30 seconds per episode
29
+ - **LeRobot Version**: v3.0
30
+
31
+ ## Observations
32
+
33
+ ### State (7-DOF joint angles)
34
+ - `axis_0` to `axis_6`: Joint angles in degrees
35
+
36
+ ### Images (3 cameras)
37
+ - **observation.images.realsense**: Intel RealSense D435I RGB camera (on-hand)
38
+ - **observation.images.fixed_cam1**: Fixed USB Camera 1 (L-837)
39
+ - **observation.images.fixed_cam2**: Fixed USB Camera 2 (L-837)
40
+
41
+ All images are 640x480 pixels, H.264 encoded.
42
+
43
+ ## Actions
44
+
45
+ The actions represent the target joint angles for the next timestep:
46
+ - `action_0` to `action_6`: Target joint angles in degrees
47
+
48
+ ## Usage
49
+
50
+ ### Loading the Dataset
51
+
52
+ ```python
53
+ from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
54
+
55
+ # Load the dataset from Hugging Face Hub
56
+ dataset = LeRobotDataset("chocolat-nya/yaskawa-untangle-dataset")
57
+
58
+ print(f"Total episodes: {dataset.num_episodes}") # 3
59
+ print(f"Total frames: {len(dataset)}") # 14,889
60
+
61
+ # Access a specific episode
62
+ episode_0 = dataset.episode(0)
63
+
64
+ # Get a single frame
65
+ frame = dataset[0]
66
+ print(frame.keys()) # ['action', 'observation.state', 'observation.images.realsense', ...]
67
+ ```
68
+
69
+ ### Training with LeRobot
70
+
71
+ Quick test training with this smaller dataset:
72
+
73
+ ```bash
74
+ lerobot-train \
75
+ --dataset.repo_id=chocolat-nya/yaskawa-untangle-dataset \
76
+ --policy.type=act \
77
+ --output_dir=outputs/train/yaskawa-untangle-test \
78
+ --job_name=yaskawa-untangle-test \
79
+ --policy.device=cuda \
80
+ --steps=10000
81
+ ```
82
+
83
+ ### Version Tag
84
+
85
+ This dataset is tagged with `v3.0` (LeRobot codebase version).
86
+
87
+ ## Data Collection Setup
88
+
89
+ ### Hardware
90
+ - **Robot**: Yaskawa 7-axis manipulator
91
+ - **Cameras**:
92
+ - Intel RealSense D435I (mounted on robot hand)
93
+ - 2x USB Camera L-837 (fixed viewpoints)
94
+ - **Control**: Direct teaching mode (30 seconds per episode)
95
+
96
+ ### Camera Configuration
97
+ - RealSense RGB: `/dev/video6`
98
+ - Fixed Camera 1: `/dev/video8`
99
+ - Fixed Camera 2: `/dev/video12`
100
+
101
+ ## Related Datasets
102
+
103
+ - **Full Dataset (50 episodes)**: [chocolat-nya/yaskawa-untangle-20260309-144410](https://huggingface.co/datasets/chocolat-nya/yaskawa-untangle-20260309-144410)
104
+
105
+ ## Citation
106
+
107
+ If you use this dataset in your research, please cite:
108
+
109
+ ```bibtex
110
+ @dataset{yaskawa_untangle_2026,
111
+ title={Yaskawa Cable Untangling Dataset},
112
+ author={chocolat-nya},
113
+ year={2026},
114
+ publisher={Hugging Face},
115
+ howpublished={\url{https://huggingface.co/datasets/chocolat-nya/yaskawa-untangle-dataset}}
116
+ }
117
+ ```
118
+
119
+ ## License
120
+
121
+ MIT License