Datasets:
Update README: correct task distribution (12 tasks), episode ranges
Browse files
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 |
|
| 36 |
| Total Duration | ~40 minutes |
|
| 37 |
| Avg Episode Length | ~16.3 seconds |
|
| 38 |
|
| 39 |
### Task Distribution
|
| 40 |
|
| 41 |
-
| Task
|
| 42 |
-
|---------
|
| 43 |
-
|
|
| 44 |
-
|
|
| 45 |
-
|
|
| 46 |
-
|
|
| 47 |
-
|
|
| 48 |
-
|
|
| 49 |
-
|
|
| 50 |
-
|
|
| 51 |
-
|
|
| 52 |
-
|
|
| 53 |
-
|
| 54 |
-
|
| 55 |
|
| 56 |
---
|
| 57 |
|
|
@@ -93,7 +93,7 @@ humanoid-robots-training-dataset/
|
|
| 93 |
|
| 94 |
| Column | Type | Description |
|
| 95 |
|--------|------|-------------|
|
| 96 |
-
| `episode_index` | int64 | Episode number (0
|
| 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"] #
|
| 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.
|
| 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 (0–146) |
|
| 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)
|
|
|
|
|
|
|
|
|