Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- no-annotation
|
4 |
+
language_creators:
|
5 |
+
- found
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
license:
|
9 |
+
- apache-2.0
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
size_categories:
|
13 |
+
- 1K<n<10K
|
14 |
+
source_datasets:
|
15 |
+
- original
|
16 |
+
task_categories:
|
17 |
+
- robotics
|
18 |
+
task_ids:
|
19 |
+
- manipulation
|
20 |
+
paperswithcode_id: null
|
21 |
+
pretty_name: merged_valid
|
22 |
+
tags:
|
23 |
+
- robotics
|
24 |
+
- manipulation
|
25 |
+
- lerobot
|
26 |
+
- v2.1
|
27 |
+
---
|
28 |
+
|
29 |
+
# Dataset Card for 1g0rrr/merged_valid
|
30 |
+
|
31 |
+
## Dataset Description
|
32 |
+
|
33 |
+
- **Repository:** 1g0rrr/merged_valid
|
34 |
+
- **Version:** v2.1
|
35 |
+
- **Robot Type:** so100
|
36 |
+
- **Total Episodes:** 125
|
37 |
+
- **Total Frames:** 40525
|
38 |
+
- **Total Tasks:** 2
|
39 |
+
- **Total Videos:** 250
|
40 |
+
- **FPS:** 30
|
41 |
+
|
42 |
+
## Dataset Structure
|
43 |
+
|
44 |
+
This dataset follows the LeRobot v2.1 format with the following structure:
|
45 |
+
- `meta/info.json`: Dataset metadata and configuration
|
46 |
+
- `meta/episodes.jsonl`: Episode information including tasks and lengths
|
47 |
+
- `meta/tasks.jsonl`: Task descriptions and indices
|
48 |
+
- `meta/episodes_stats.jsonl`: Per-episode statistics
|
49 |
+
- `data/chunk_*/episode_*.parquet`: Episode data files
|
50 |
+
- `videos/chunk_*/video_key_*/episode_*.mp4`: Video files (if present)
|
51 |
+
|
52 |
+
## Usage
|
53 |
+
|
54 |
+
This dataset can be loaded using the LeRobot dataset loader:
|
55 |
+
|
56 |
+
```python
|
57 |
+
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
|
58 |
+
|
59 |
+
dataset = LeRobotDataset("1g0rrr/merged_valid")
|
60 |
+
```
|