Sraghvi commited on
Commit
3371754
·
verified ·
1 Parent(s): 75bac92

Upload ultra final working LeRobot v3.0 dataset from bag_all_0.db3

Browse files
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - robotics
5
+ language:
6
+ - en
7
+ tags:
8
+ - robotics
9
+ - manipulation
10
+ - lerobot
11
+ - ros2
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # Bag All 0 Robot Manipulation Dataset (Ultra Final Working v3.0)
17
+
18
+ This dataset contains robot manipulation data converted from bag_all_0.db3 to LeRobot v3.0 format.
19
+
20
+ ## Dataset Information
21
+
22
+ - **Format**: LeRobot v3.0
23
+ - **Codebase Version**: v3.0
24
+ - **Created**: 2025-09-08 15:34:27
25
+ - **Task**: Pick and Place manipulation
26
+ - **Source**: bag_all_0.db3
27
+ - **Compatible with**: [LeRobot Visualization Tool](https://huggingface.co/spaces/lerobot/visualize_dataset)
28
+
29
+ ## Dataset Structure
30
+
31
+ ```
32
+ data/
33
+ ├── chunk-000/
34
+ │ └── file-000.parquet
35
+ videos/
36
+ ├── observation.images.front/
37
+ │ └── chunk-000/
38
+ │ └── file-000.mp4
39
+ meta/
40
+ ├── info.json
41
+ ├── stats.json
42
+ ├── tasks.parquet
43
+ └── episodes/
44
+ └── chunk-000/
45
+ └── file-000.parquet
46
+ ```
47
+
48
+ ## Usage
49
+
50
+ ```python
51
+ from lerobot import LeRobotDataset
52
+
53
+ # Load the dataset
54
+ dataset = LeRobotDataset("Sraghvi/bag-all-0-robot-manipulation-ultra-final-working-v3")
55
+
56
+ # Access episode data
57
+ episode = dataset[0]
58
+ print(episode.keys())
59
+ ```
60
+
61
+ ## Visualization
62
+
63
+ You can visualize this dataset using the LeRobot visualization tool:
64
+ https://huggingface.co/spaces/lerobot/visualize_dataset
65
+
66
+ ## Citation
67
+
68
+ If you use this dataset, please cite:
69
+
70
+ ```bibtex
71
+ @dataset{bag_all_0_robot_manipulation_ultra_final_working_v3,
72
+ title={Bag All 0 Robot Manipulation Dataset (Ultra Final Working v3.0)},
73
+ author={Sraghvi},
74
+ year={2025},
75
+ url={https://huggingface.co/datasets/Sraghvi/bag-all-0-robot-manipulation-ultra-final-working-v3}
76
+ }
77
+ ```
data/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb53efac7683a699f1c02bec581be9e7b22e1cea3458e8e78068a9a3cf70549e
3
+ size 13692
meta/episodes/chunk-000/file-000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28e3bed282092f5e2ab6eaf1fcb1004669f4e62fc0705fcf8d512c13c663be13
3
+ size 3219
meta/info.json ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "so101_robot",
4
+ "total_episodes": 1,
5
+ "total_frames": 50,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "fps": 30.0,
9
+ "splits": {
10
+ "train": "0:1"
11
+ },
12
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
13
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
14
+ "features": {
15
+ "action": {
16
+ "dtype": "float32",
17
+ "shape": [
18
+ 7
19
+ ],
20
+ "names": {
21
+ "motors": [
22
+ "Base.pos",
23
+ "Shoulder.pos",
24
+ "Elbow.pos",
25
+ "Wrist1.pos",
26
+ "Wrist2.pos",
27
+ "Wrist3.pos",
28
+ "Gripper.pos"
29
+ ]
30
+ },
31
+ "fps": 30.0
32
+ },
33
+ "observation.state": {
34
+ "dtype": "float32",
35
+ "shape": [
36
+ 7
37
+ ],
38
+ "names": {
39
+ "motors": [
40
+ "Base.pos",
41
+ "Shoulder.pos",
42
+ "Elbow.pos",
43
+ "Wrist1.pos",
44
+ "Wrist2.pos",
45
+ "Wrist3.pos",
46
+ "Gripper.pos"
47
+ ]
48
+ },
49
+ "fps": 30.0
50
+ },
51
+ "observation.images.front": {
52
+ "dtype": "video",
53
+ "shape": [
54
+ 1080,
55
+ 1920,
56
+ 3
57
+ ],
58
+ "names": [
59
+ "height",
60
+ "width",
61
+ "channel"
62
+ ],
63
+ "video_info": {
64
+ "video.fps": 30.0,
65
+ "video.codec": "mp4v",
66
+ "video.pix_fmt": "yuv420p",
67
+ "video.is_depth_map": false,
68
+ "has_audio": false
69
+ }
70
+ },
71
+ "timestamp": {
72
+ "dtype": "float32",
73
+ "shape": [
74
+ 1
75
+ ],
76
+ "names": null,
77
+ "fps": 30.0
78
+ },
79
+ "frame_index": {
80
+ "dtype": "int64",
81
+ "shape": [
82
+ 1
83
+ ],
84
+ "names": null,
85
+ "fps": 30.0
86
+ },
87
+ "episode_index": {
88
+ "dtype": "int64",
89
+ "shape": [
90
+ 1
91
+ ],
92
+ "names": null,
93
+ "fps": 30.0
94
+ },
95
+ "index": {
96
+ "dtype": "int64",
97
+ "shape": [
98
+ 1
99
+ ],
100
+ "names": null,
101
+ "fps": 30.0
102
+ },
103
+ "task_index": {
104
+ "dtype": "int64",
105
+ "shape": [
106
+ 1
107
+ ],
108
+ "names": null,
109
+ "fps": 30.0
110
+ }
111
+ },
112
+ "data_files_size_in_mb": 1,
113
+ "video_files_size_in_mb": 5
114
+ }
meta/stats.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "total_episodes": 1,
3
+ "total_frames": 50,
4
+ "fps": 30.0,
5
+ "duration": 1.6666666666666667
6
+ }
meta/tasks.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1113f0b5d58033b2592d38d3dee413c7ed583fcb9543a078fc170f421d6ed03
3
+ size 2470
videos/observation.images.front/chunk-000/file-000.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:091f90d1de9b56698c6dc21b2f3e82dfd2c08e90771173b61bf398553fd11e34
3
+ size 831802