aractingi commited on
Commit
692eff9
·
verified ·
1 Parent(s): b113297

fix(meta): cast fps to int in meta/info.json

Browse files
Files changed (1) hide show
  1. meta/info.json +129 -129
meta/info.json CHANGED
@@ -1,132 +1,132 @@
1
  {
2
- "codebase_version": "v3.0",
3
- "robot_type": "unknown",
4
- "total_episodes": 908,
5
- "total_frames": 392578,
6
- "total_tasks": 4,
7
- "chunks_size": 1000,
8
- "fps": 30.0,
9
- "splits": {
10
- "train": "0:908"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- "observation.images.hand_image": {
16
- "dtype": "video",
17
- "shape": [
18
- 480,
19
- 640,
20
- 3
21
- ],
22
- "names": [
23
- "height",
24
- "width",
25
- "channel"
26
- ],
27
- "video_info": {
28
- "video.fps": 30.0,
29
- "video.codec": "av1",
30
- "video.pix_fmt": "yuv420p",
31
- "video.is_depth_map": false,
32
- "has_audio": false
33
- }
34
- },
35
- "observation.state": {
36
- "dtype": "float32",
37
- "shape": [
38
- 8
39
- ],
40
- "names": {
41
- "motors": [
42
- "motor_0",
43
- "motor_1",
44
- "motor_2",
45
- "motor_3",
46
- "motor_4",
47
- "motor_5",
48
- "motor_6",
49
- "motor_7"
50
- ]
51
- },
52
- "fps": 30.0
53
- },
54
- "action": {
55
- "dtype": "float32",
56
- "shape": [
57
- 8
58
- ],
59
- "names": {
60
- "motors": [
61
- "motor_0",
62
- "motor_1",
63
- "motor_2",
64
- "motor_3",
65
- "motor_4",
66
- "motor_5",
67
- "motor_6",
68
- "motor_7"
69
- ]
70
- },
71
- "fps": 30.0
72
- },
73
- "timestamp": {
74
- "dtype": "float32",
75
- "shape": [
76
- 1
77
- ],
78
- "names": null,
79
- "fps": 30.0
80
- },
81
- "episode_index": {
82
- "dtype": "int64",
83
- "shape": [
84
- 1
85
- ],
86
- "names": null,
87
- "fps": 30.0
88
- },
89
- "frame_index": {
90
- "dtype": "int64",
91
- "shape": [
92
- 1
93
- ],
94
- "names": null,
95
- "fps": 30.0
96
- },
97
- "next.reward": {
98
- "dtype": "float32",
99
- "shape": [
100
- 1
101
- ],
102
- "names": null,
103
- "fps": 30.0
104
- },
105
- "next.done": {
106
- "dtype": "bool",
107
- "shape": [
108
- 1
109
- ],
110
- "names": null,
111
- "fps": 30.0
112
- },
113
- "index": {
114
- "dtype": "int64",
115
- "shape": [
116
- 1
117
- ],
118
- "names": null,
119
- "fps": 30.0
120
- },
121
- "task_index": {
122
- "dtype": "int64",
123
- "shape": [
124
- 1
125
- ],
126
- "names": null,
127
- "fps": 30.0
128
- }
129
  },
130
- "data_files_size_in_mb": 100,
131
- "video_files_size_in_mb": 500
132
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "unknown",
4
+ "total_episodes": 908,
5
+ "total_frames": 392578,
6
+ "total_tasks": 4,
7
+ "chunks_size": 1000,
8
+ "fps": 30,
9
+ "splits": {
10
+ "train": "0:908"
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
+ "observation.images.hand_image": {
16
+ "dtype": "video",
17
+ "shape": [
18
+ 480,
19
+ 640,
20
+ 3
21
+ ],
22
+ "names": [
23
+ "height",
24
+ "width",
25
+ "channel"
26
+ ],
27
+ "video_info": {
28
+ "video.fps": 30.0,
29
+ "video.codec": "av1",
30
+ "video.pix_fmt": "yuv420p",
31
+ "video.is_depth_map": false,
32
+ "has_audio": false
33
+ }
34
  },
35
+ "observation.state": {
36
+ "dtype": "float32",
37
+ "shape": [
38
+ 8
39
+ ],
40
+ "names": {
41
+ "motors": [
42
+ "motor_0",
43
+ "motor_1",
44
+ "motor_2",
45
+ "motor_3",
46
+ "motor_4",
47
+ "motor_5",
48
+ "motor_6",
49
+ "motor_7"
50
+ ]
51
+ },
52
+ "fps": 30.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  },
54
+ "action": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 8
58
+ ],
59
+ "names": {
60
+ "motors": [
61
+ "motor_0",
62
+ "motor_1",
63
+ "motor_2",
64
+ "motor_3",
65
+ "motor_4",
66
+ "motor_5",
67
+ "motor_6",
68
+ "motor_7"
69
+ ]
70
+ },
71
+ "fps": 30.0
72
+ },
73
+ "timestamp": {
74
+ "dtype": "float32",
75
+ "shape": [
76
+ 1
77
+ ],
78
+ "names": null,
79
+ "fps": 30.0
80
+ },
81
+ "episode_index": {
82
+ "dtype": "int64",
83
+ "shape": [
84
+ 1
85
+ ],
86
+ "names": null,
87
+ "fps": 30.0
88
+ },
89
+ "frame_index": {
90
+ "dtype": "int64",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null,
95
+ "fps": 30.0
96
+ },
97
+ "next.reward": {
98
+ "dtype": "float32",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null,
103
+ "fps": 30.0
104
+ },
105
+ "next.done": {
106
+ "dtype": "bool",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null,
111
+ "fps": 30.0
112
+ },
113
+ "index": {
114
+ "dtype": "int64",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null,
119
+ "fps": 30.0
120
+ },
121
+ "task_index": {
122
+ "dtype": "int64",
123
+ "shape": [
124
+ 1
125
+ ],
126
+ "names": null,
127
+ "fps": 30.0
128
+ }
129
+ },
130
+ "data_files_size_in_mb": 100,
131
+ "video_files_size_in_mb": 500
132
+ }