aractingi HF Staff commited on
Commit
7e71e26
·
verified ·
1 Parent(s): 1847039

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

Browse files
Files changed (1) hide show
  1. meta/info.json +128 -128
meta/info.json CHANGED
@@ -1,131 +1,131 @@
1
  {
2
- "codebase_version": "v3.0",
3
- "robot_type": "unknown",
4
- "total_episodes": 576,
5
- "total_frames": 235922,
6
- "total_tasks": 44,
7
- "chunks_size": 1000,
8
- "fps": 5.0,
9
- "splits": {
10
- "train": "0:576"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.image": {
16
- "dtype": "video",
17
- "shape": [
18
- 128,
19
- 128,
20
- 3
21
- ],
22
- "names": [
23
- "height",
24
- "width",
25
- "channel"
26
- ],
27
- "video_info": {
28
- "video.fps": 5.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": 5.0
53
- },
54
- "action": {
55
- "dtype": "float32",
56
- "shape": [
57
- 7
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
- ]
69
- },
70
- "fps": 5.0
71
- },
72
- "timestamp": {
73
- "dtype": "float32",
74
- "shape": [
75
- 1
76
- ],
77
- "names": null,
78
- "fps": 5.0
79
- },
80
- "episode_index": {
81
- "dtype": "int64",
82
- "shape": [
83
- 1
84
- ],
85
- "names": null,
86
- "fps": 5.0
87
- },
88
- "frame_index": {
89
- "dtype": "int64",
90
- "shape": [
91
- 1
92
- ],
93
- "names": null,
94
- "fps": 5.0
95
- },
96
- "next.reward": {
97
- "dtype": "float32",
98
- "shape": [
99
- 1
100
- ],
101
- "names": null,
102
- "fps": 5.0
103
- },
104
- "next.done": {
105
- "dtype": "bool",
106
- "shape": [
107
- 1
108
- ],
109
- "names": null,
110
- "fps": 5.0
111
- },
112
- "index": {
113
- "dtype": "int64",
114
- "shape": [
115
- 1
116
- ],
117
- "names": null,
118
- "fps": 5.0
119
- },
120
- "task_index": {
121
- "dtype": "int64",
122
- "shape": [
123
- 1
124
- ],
125
- "names": null,
126
- "fps": 5.0
127
- }
128
  },
129
- "data_files_size_in_mb": 100,
130
- "video_files_size_in_mb": 500
131
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "unknown",
4
+ "total_episodes": 576,
5
+ "total_frames": 235922,
6
+ "total_tasks": 44,
7
+ "chunks_size": 1000,
8
+ "fps": 5,
9
+ "splits": {
10
+ "train": "0:576"
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.image": {
16
+ "dtype": "video",
17
+ "shape": [
18
+ 128,
19
+ 128,
20
+ 3
21
+ ],
22
+ "names": [
23
+ "height",
24
+ "width",
25
+ "channel"
26
+ ],
27
+ "video_info": {
28
+ "video.fps": 5.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": 5.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  },
54
+ "action": {
55
+ "dtype": "float32",
56
+ "shape": [
57
+ 7
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
+ ]
69
+ },
70
+ "fps": 5.0
71
+ },
72
+ "timestamp": {
73
+ "dtype": "float32",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null,
78
+ "fps": 5.0
79
+ },
80
+ "episode_index": {
81
+ "dtype": "int64",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "names": null,
86
+ "fps": 5.0
87
+ },
88
+ "frame_index": {
89
+ "dtype": "int64",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null,
94
+ "fps": 5.0
95
+ },
96
+ "next.reward": {
97
+ "dtype": "float32",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null,
102
+ "fps": 5.0
103
+ },
104
+ "next.done": {
105
+ "dtype": "bool",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null,
110
+ "fps": 5.0
111
+ },
112
+ "index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null,
118
+ "fps": 5.0
119
+ },
120
+ "task_index": {
121
+ "dtype": "int64",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null,
126
+ "fps": 5.0
127
+ }
128
+ },
129
+ "data_files_size_in_mb": 100,
130
+ "video_files_size_in_mb": 500
131
+ }