Raffael-Kultyshev commited on
Commit
7d41b09
·
verified ·
1 Parent(s): 1662781

Update README: correct task distribution (12 tasks), episode ranges

Browse files
Files changed (1) hide show
  1. README.md +18 -21
README.md CHANGED
@@ -32,26 +32,26 @@ RGB-D hand manipulation dataset captured with iPhone 13 TrueDepth sensor for hum
32
  | Episodes | 147 |
33
  | Total Frames | ~72,000 |
34
  | FPS | 30 |
35
- | Tasks | 10 manipulation tasks |
36
  | Total Duration | ~40 minutes |
37
  | Avg Episode Length | ~16.3 seconds |
38
 
39
  ### Task Distribution
40
 
41
- | Task ID | Description | Episodes |
42
- |---------|-------------|----------|
43
- | Task 1 | Fold the white t-shirt on the bed | 8 |
44
- | Task 2 | Fold the jeans on the bed | 10 |
45
- | Task 3 | Fold two underwear and stack them | 10 |
46
- | Task 4 | Put the pillow on the right place | 10 |
47
- | Task 5 | Pick up plate and glass, put on stove | 10 |
48
- | Task 6 | Go out the door and close it | 9 |
49
- | Task 7 | Pick up sandals, put next to scale | 10 |
50
- | Task 8 | Put cloth in basket, close drawer | 10 |
51
- | Task 9 | Screw the cap on your bottle | 10 |
52
- | Task 10 | Pick up two objects, put on bed | 10 |
53
-
54
- > **Note:** Task distribution is approximate and will be updated with per-episode language instructions.
55
 
56
  ---
57
 
@@ -93,7 +93,7 @@ humanoid-robots-training-dataset/
93
 
94
  | Column | Type | Description |
95
  |--------|------|-------------|
96
- | `episode_index` | int64 | Episode number (0-146) |
97
  | `frame_index` | int64 | Frame within episode |
98
  | `timestamp` | float64 | Time in seconds |
99
  | `language_instruction` | string | Task description |
@@ -163,7 +163,7 @@ dataset = LeRobotDataset("DynamicIntelligence/humanoid-robots-training-dataset")
163
  episode = dataset[0]
164
  state = episode["observation.camera_pose"] # [6] camera 6-DoF
165
  rgb = episode["observation.images.rgb"] # Video frame
166
- task = episode["language_instruction"] # Task description
167
  ```
168
 
169
  ### Direct Parquet Access
@@ -178,7 +178,7 @@ path = hf_hub_download(
178
  repo_type="dataset"
179
  )
180
  df = pd.read_parquet(path)
181
- print(df.columns.tolist())
182
  print(f"Frames: {len(df)}")
183
  ```
184
 
@@ -218,6 +218,3 @@ Each hand has tracked joints. The `observation.left_hand` and `observation.right
218
  ## Visualizer
219
 
220
  Explore the dataset interactively: [DI Hand Pose Sample Dataset Viewer](https://huggingface.co/spaces/DynamicIntelligence/dynamic_intelligence_sample_data)
221
-
222
- - **Enable plots**: Click the white checkbox next to joint names to show data in the graph
223
- - **Full data access**: All joint data is available in the parquet files under `Files and versions`
 
32
  | Episodes | 147 |
33
  | Total Frames | ~72,000 |
34
  | FPS | 30 |
35
+ | Tasks | 12 manipulation tasks |
36
  | Total Duration | ~40 minutes |
37
  | Avg Episode Length | ~16.3 seconds |
38
 
39
  ### Task Distribution
40
 
41
+ | Task | Description | Episodes | Count |
42
+ |------|-------------|----------|-------|
43
+ | 1 | Fold the t-shirt on the bed. | 0–7 | 8 |
44
+ | 2 | Pick up the two items on the floor and put them on the bed. | 8–17 | 10 |
45
+ | 3 | Fold the jeans on the bed. | 18–27 | 10 |
46
+ | 4 | Fold the underwear on the table. | 28–37 | 10 |
47
+ | 5 | Put the pillow in its correct place. | 38–47 | 10 |
48
+ | 6 | Place the tableware on the kitchen counter. | 48–57 | 10 |
49
+ | 7 | Get out of the room and close the door behind you. | 58–66 | 9 |
50
+ | 8 | Put the sandals in the right place. | 67–76 | 10 |
51
+ | 9 | Put the cleaning cloth in the laundry basket. | 77–86 | 10 |
52
+ | 10 | Screw the cap back on the bottle. | 87–96 | 10 |
53
+ | 11 | Tuck the chairs into the table. | 97–127 | 31 |
54
+ | 12 | Put the dishes in the sink. | 128–146 | 19 |
55
 
56
  ---
57
 
 
93
 
94
  | Column | Type | Description |
95
  |--------|------|-------------|
96
+ | `episode_index` | int64 | Episode number (0146) |
97
  | `frame_index` | int64 | Frame within episode |
98
  | `timestamp` | float64 | Time in seconds |
99
  | `language_instruction` | string | Task description |
 
163
  episode = dataset[0]
164
  state = episode["observation.camera_pose"] # [6] camera 6-DoF
165
  rgb = episode["observation.images.rgb"] # Video frame
166
+ task = episode["language_instruction"] # "Fold the t-shirt on the bed."
167
  ```
168
 
169
  ### Direct Parquet Access
 
178
  repo_type="dataset"
179
  )
180
  df = pd.read_parquet(path)
181
+ print(df["language_instruction"].iloc[0]) # "Fold the t-shirt on the bed."
182
  print(f"Frames: {len(df)}")
183
  ```
184
 
 
218
  ## Visualizer
219
 
220
  Explore the dataset interactively: [DI Hand Pose Sample Dataset Viewer](https://huggingface.co/spaces/DynamicIntelligence/dynamic_intelligence_sample_data)