aractingi HF Staff commited on
Commit
79efb0e
·
verified ·
1 Parent(s): fc9ee1c

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

Browse files
Files changed (1) hide show
  1. meta/info.json +120 -120
meta/info.json CHANGED
@@ -1,123 +1,123 @@
1
  {
2
- "codebase_version": "v3.0",
3
- "robot_type": "unknown",
4
- "total_episodes": 800,
5
- "total_frames": 20000,
6
- "total_tasks": 1,
7
- "chunks_size": 1000,
8
- "fps": 15.0,
9
- "splits": {
10
- "train": "0:800"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.image": {
16
- "dtype": "video",
17
- "shape": [
18
- 84,
19
- 84,
20
- 3
21
- ],
22
- "names": [
23
- "height",
24
- "width",
25
- "channel"
26
- ],
27
- "video_info": {
28
- "video.fps": 15.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
- 4
39
- ],
40
- "names": {
41
- "motors": [
42
- "motor_0",
43
- "motor_1",
44
- "motor_2",
45
- "motor_3"
46
- ]
47
- },
48
- "fps": 15.0
49
- },
50
- "action": {
51
- "dtype": "float32",
52
- "shape": [
53
- 4
54
- ],
55
- "names": {
56
- "motors": [
57
- "motor_0",
58
- "motor_1",
59
- "motor_2",
60
- "motor_3"
61
- ]
62
- },
63
- "fps": 15.0
64
- },
65
- "episode_index": {
66
- "dtype": "int64",
67
- "shape": [
68
- 1
69
- ],
70
- "names": null,
71
- "fps": 15.0
72
- },
73
- "frame_index": {
74
- "dtype": "int64",
75
- "shape": [
76
- 1
77
- ],
78
- "names": null,
79
- "fps": 15.0
80
- },
81
- "timestamp": {
82
- "dtype": "float32",
83
- "shape": [
84
- 1
85
- ],
86
- "names": null,
87
- "fps": 15.0
88
- },
89
- "next.reward": {
90
- "dtype": "float32",
91
- "shape": [
92
- 1
93
- ],
94
- "names": null,
95
- "fps": 15.0
96
- },
97
- "next.done": {
98
- "dtype": "bool",
99
- "shape": [
100
- 1
101
- ],
102
- "names": null,
103
- "fps": 15.0
104
- },
105
- "index": {
106
- "dtype": "int64",
107
- "shape": [
108
- 1
109
- ],
110
- "names": null,
111
- "fps": 15.0
112
- },
113
- "task_index": {
114
- "dtype": "int64",
115
- "shape": [
116
- 1
117
- ],
118
- "names": null,
119
- "fps": 15.0
120
- }
121
  },
122
- "files_size_in_mb": 500.0
123
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "unknown",
4
+ "total_episodes": 800,
5
+ "total_frames": 20000,
6
+ "total_tasks": 1,
7
+ "chunks_size": 1000,
8
+ "fps": 15,
9
+ "splits": {
10
+ "train": "0:800"
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.image": {
16
+ "dtype": "video",
17
+ "shape": [
18
+ 84,
19
+ 84,
20
+ 3
21
+ ],
22
+ "names": [
23
+ "height",
24
+ "width",
25
+ "channel"
26
+ ],
27
+ "video_info": {
28
+ "video.fps": 15.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
+ 4
39
+ ],
40
+ "names": {
41
+ "motors": [
42
+ "motor_0",
43
+ "motor_1",
44
+ "motor_2",
45
+ "motor_3"
46
+ ]
47
+ },
48
+ "fps": 15.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  },
50
+ "action": {
51
+ "dtype": "float32",
52
+ "shape": [
53
+ 4
54
+ ],
55
+ "names": {
56
+ "motors": [
57
+ "motor_0",
58
+ "motor_1",
59
+ "motor_2",
60
+ "motor_3"
61
+ ]
62
+ },
63
+ "fps": 15.0
64
+ },
65
+ "episode_index": {
66
+ "dtype": "int64",
67
+ "shape": [
68
+ 1
69
+ ],
70
+ "names": null,
71
+ "fps": 15.0
72
+ },
73
+ "frame_index": {
74
+ "dtype": "int64",
75
+ "shape": [
76
+ 1
77
+ ],
78
+ "names": null,
79
+ "fps": 15.0
80
+ },
81
+ "timestamp": {
82
+ "dtype": "float32",
83
+ "shape": [
84
+ 1
85
+ ],
86
+ "names": null,
87
+ "fps": 15.0
88
+ },
89
+ "next.reward": {
90
+ "dtype": "float32",
91
+ "shape": [
92
+ 1
93
+ ],
94
+ "names": null,
95
+ "fps": 15.0
96
+ },
97
+ "next.done": {
98
+ "dtype": "bool",
99
+ "shape": [
100
+ 1
101
+ ],
102
+ "names": null,
103
+ "fps": 15.0
104
+ },
105
+ "index": {
106
+ "dtype": "int64",
107
+ "shape": [
108
+ 1
109
+ ],
110
+ "names": null,
111
+ "fps": 15.0
112
+ },
113
+ "task_index": {
114
+ "dtype": "int64",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null,
119
+ "fps": 15.0
120
+ }
121
+ },
122
+ "files_size_in_mb": 500.0
123
+ }