charithmunasinghe commited on
Commit
76b8a05
·
1 Parent(s): 414137a

add metadata.

Browse files

Not compatible yet with V2 /V3

Files changed (2) hide show
  1. info.json +0 -24
  2. meta/info.json +97 -37
info.json DELETED
@@ -1,24 +0,0 @@
1
- {
2
- "codebase_version": "v0.3",
3
- "robot_type": "piper",
4
- "fps": 30,
5
- "video": false,
6
- "splits": {
7
- "train": "0:13"
8
- },
9
- "total_episodes": 13,
10
- "total_frames": 4588,
11
- "total_tasks": 12,
12
- "total_videos": 0,
13
- "total_chunks": 0,
14
- "chunks_size": 1000,
15
- "license": "MIT",
16
- "tags": [
17
- "robotics",
18
- "teleoperation",
19
- "manipulation",
20
- "imitation-learning",
21
- "LeRobot-v3",
22
- "piper-robot"
23
- ]
24
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
meta/info.json CHANGED
@@ -1,52 +1,112 @@
1
  {
2
- "codebase_version": "v0.3",
3
  "robot_type": "piper",
 
 
 
 
 
 
4
  "fps": 30,
5
- "video": false,
6
- "encoding": {
 
 
 
 
7
  "observation.images.table_cam": {
8
- "type": "video_folder",
9
- "path": "{episode_name}_images/observation.images.table_cam"
 
 
 
 
 
 
 
 
10
  },
11
  "observation.images.wrist_cam": {
12
- "type": "video_folder",
13
- "path": "{episode_name}_images/observation.images.wrist_cam"
 
 
 
 
 
 
 
 
14
  },
15
  "observation.state": {
16
- "type": "hdf5",
17
- "path": "observations/state"
 
 
 
 
 
 
 
 
 
 
 
 
18
  },
19
  "action": {
20
- "type": "hdf5",
21
- "path": "actions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
23
  },
24
- "shapes": {
25
- "observation.images.table_cam": [720, 800, 3],
26
- "observation.images.wrist_cam": [480, 640, 3],
27
- "observation.state": [7],
28
- "action": [7]
29
- },
30
- "names": {
31
- "observation.state": [
32
- "joint_1",
33
- "joint_2",
34
- "joint_3",
35
- "joint_4",
36
- "joint_5",
37
- "joint_6",
38
- "joint_7"
39
- ],
40
- "action": [
41
- "joint_1",
42
- "joint_2",
43
- "joint_3",
44
- "joint_4",
45
- "joint_5",
46
- "joint_6",
47
- "joint_7"
48
- ]
49
- },
50
  "license": "MIT",
51
  "description": "PiPER robot teaching episodes dataset containing teleoperation demonstrations for object manipulation tasks. Dataset includes synchronized robot state, actions, and dual-camera observations captured at 30 FPS."
52
  }
 
1
  {
2
+ "codebase_version": "v3.0",
3
  "robot_type": "piper",
4
+ "total_episodes": 13,
5
+ "total_frames": 4588,
6
+ "total_tasks": 12,
7
+ "chunks_size": 1000,
8
+ "data_files_size_in_mb": 100,
9
+ "video_files_size_in_mb": 500,
10
  "fps": 30,
11
+ "splits": {
12
+ "train": "0:13"
13
+ },
14
+ "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet",
15
+ "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4",
16
+ "features": {
17
  "observation.images.table_cam": {
18
+ "dtype": "video",
19
+ "shape": [720, 800, 3],
20
+ "names": ["height", "width", "channel"],
21
+ "video_info": {
22
+ "video.fps": 30.0,
23
+ "video.codec": "av1",
24
+ "video.pix_fmt": "yuv420p",
25
+ "video.is_depth_map": false,
26
+ "has_audio": false
27
+ }
28
  },
29
  "observation.images.wrist_cam": {
30
+ "dtype": "video",
31
+ "shape": [480, 640, 3],
32
+ "names": ["height", "width", "channel"],
33
+ "video_info": {
34
+ "video.fps": 30.0,
35
+ "video.codec": "av1",
36
+ "video.pix_fmt": "yuv420p",
37
+ "video.is_depth_map": false,
38
+ "has_audio": false
39
+ }
40
  },
41
  "observation.state": {
42
+ "dtype": "float32",
43
+ "shape": [7],
44
+ "names": {
45
+ "motors": [
46
+ "joint_1",
47
+ "joint_2",
48
+ "joint_3",
49
+ "joint_4",
50
+ "joint_5",
51
+ "joint_6",
52
+ "joint_7"
53
+ ]
54
+ },
55
+ "fps": 30.0
56
  },
57
  "action": {
58
+ "dtype": "float32",
59
+ "shape": [7],
60
+ "names": {
61
+ "motors": [
62
+ "joint_1",
63
+ "joint_2",
64
+ "joint_3",
65
+ "joint_4",
66
+ "joint_5",
67
+ "joint_6",
68
+ "joint_7"
69
+ ]
70
+ },
71
+ "fps": 30.0
72
+ },
73
+ "episode_index": {
74
+ "dtype": "int64",
75
+ "shape": [1],
76
+ "names": null,
77
+ "fps": 30.0
78
+ },
79
+ "frame_index": {
80
+ "dtype": "int64",
81
+ "shape": [1],
82
+ "names": null,
83
+ "fps": 30.0
84
+ },
85
+ "timestamp": {
86
+ "dtype": "float32",
87
+ "shape": [1],
88
+ "names": null,
89
+ "fps": 30.0
90
+ },
91
+ "next.done": {
92
+ "dtype": "bool",
93
+ "shape": [1],
94
+ "names": null,
95
+ "fps": 30.0
96
+ },
97
+ "index": {
98
+ "dtype": "int64",
99
+ "shape": [1],
100
+ "names": null,
101
+ "fps": 30.0
102
+ },
103
+ "task_index": {
104
+ "dtype": "int64",
105
+ "shape": [1],
106
+ "names": null,
107
+ "fps": 30.0
108
  }
109
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  "license": "MIT",
111
  "description": "PiPER robot teaching episodes dataset containing teleoperation demonstrations for object manipulation tasks. Dataset includes synchronized robot state, actions, and dual-camera observations captured at 30 FPS."
112
  }