AndrewNoviello commited on
Commit
3553866
·
verified ·
1 Parent(s): 96da5cd

Update meta/info.json

Browse files
Files changed (1) hide show
  1. meta/info.json +111 -94
meta/info.json CHANGED
@@ -1,94 +1,111 @@
1
- {
2
- "codebase_version": "v2.1",
3
- "robot_type": "so101_follower",
4
- "total_episodes": 60,
5
- "total_frames": 26549,
6
- "total_tasks": 2,
7
- "total_videos": 60,
8
- "total_chunks": 1,
9
- "chunks_size": 1000,
10
- "fps": 30,
11
- "splits": {
12
- "train": "0:59"
13
- },
14
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
15
- "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
16
- "features": {
17
- "action": {
18
- "dtype": "float32",
19
- "shape": [
20
- 6
21
- ],
22
- "names": [
23
- "shoulder_pan.pos",
24
- "shoulder_lift.pos",
25
- "elbow_flex.pos",
26
- "wrist_flex.pos",
27
- "wrist_roll.pos",
28
- "gripper.pos"
29
- ]
30
- },
31
- "observation.state": {
32
- "dtype": "float32",
33
- "shape": [
34
- 6
35
- ],
36
- "names": [
37
- "shoulder_pan.pos",
38
- "shoulder_lift.pos",
39
- "elbow_flex.pos",
40
- "wrist_flex.pos",
41
- "wrist_roll.pos",
42
- "gripper.pos"
43
- ]
44
- },
45
- "observation.images.front": {
46
- "dtype": "video",
47
- "shape": [
48
- 1080,
49
- 1920,
50
- 3
51
- ],
52
- "names": [
53
- "height",
54
- "width",
55
- "channels"
56
- ]
57
- },
58
- "timestamp": {
59
- "dtype": "float32",
60
- "shape": [
61
- 1
62
- ],
63
- "names": null
64
- },
65
- "frame_index": {
66
- "dtype": "int64",
67
- "shape": [
68
- 1
69
- ],
70
- "names": null
71
- },
72
- "episode_index": {
73
- "dtype": "int64",
74
- "shape": [
75
- 1
76
- ],
77
- "names": null
78
- },
79
- "index": {
80
- "dtype": "int64",
81
- "shape": [
82
- 1
83
- ],
84
- "names": null
85
- },
86
- "task_index": {
87
- "dtype": "int64",
88
- "shape": [
89
- 1
90
- ],
91
- "names": null
92
- }
93
- }
94
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "so101_follower",
4
+ "total_episodes": 60,
5
+ "total_frames": 26549,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "fps": 30.0,
9
+ "splits": {
10
+ "train": "0:59"
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
+ 6
19
+ ],
20
+ "names": [
21
+ "shoulder_pan.pos",
22
+ "shoulder_lift.pos",
23
+ "elbow_flex.pos",
24
+ "wrist_flex.pos",
25
+ "wrist_roll.pos",
26
+ "gripper.pos"
27
+ ],
28
+ "fps": 30.0
29
+ },
30
+ "observation.state": {
31
+ "dtype": "float32",
32
+ "shape": [
33
+ 6
34
+ ],
35
+ "names": [
36
+ "shoulder_pan.pos",
37
+ "shoulder_lift.pos",
38
+ "elbow_flex.pos",
39
+ "wrist_flex.pos",
40
+ "wrist_roll.pos",
41
+ "gripper.pos"
42
+ ],
43
+ "fps": 30.0
44
+ },
45
+ "observation.images.front": {
46
+ "dtype": "video",
47
+ "shape": [
48
+ 1080,
49
+ 1920,
50
+ 3
51
+ ],
52
+ "names": [
53
+ "height",
54
+ "width",
55
+ "channels"
56
+ ],
57
+ "info": {
58
+ "video.height": 1080,
59
+ "video.width": 1920,
60
+ "video.codec": "av1",
61
+ "video.pix_fmt": "yuv420p",
62
+ "video.is_depth_map": false,
63
+ "video.fps": 30,
64
+ "video.channels": 3,
65
+ "has_audio": false
66
+ }
67
+ },
68
+ "timestamp": {
69
+ "dtype": "float32",
70
+ "shape": [
71
+ 1
72
+ ],
73
+ "names": null,
74
+ "fps": 30.0
75
+ },
76
+ "frame_index": {
77
+ "dtype": "int64",
78
+ "shape": [
79
+ 1
80
+ ],
81
+ "names": null,
82
+ "fps": 30.0
83
+ },
84
+ "episode_index": {
85
+ "dtype": "int64",
86
+ "shape": [
87
+ 1
88
+ ],
89
+ "names": null,
90
+ "fps": 30.0
91
+ },
92
+ "index": {
93
+ "dtype": "int64",
94
+ "shape": [
95
+ 1
96
+ ],
97
+ "names": null,
98
+ "fps": 30.0
99
+ },
100
+ "task_index": {
101
+ "dtype": "int64",
102
+ "shape": [
103
+ 1
104
+ ],
105
+ "names": null,
106
+ "fps": 30.0
107
+ }
108
+ },
109
+ "data_files_size_in_mb": 100,
110
+ "video_files_size_in_mb": 20
111
+ }