aractingi HF Staff commited on
Commit
50352b1
·
verified ·
1 Parent(s): d5d21af

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

Browse files
Files changed (1) hide show
  1. meta/info.json +119 -119
meta/info.json CHANGED
@@ -1,122 +1,122 @@
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
- 3
54
- ],
55
- "names": {
56
- "motors": [
57
- "motor_0",
58
- "motor_1",
59
- "motor_2"
60
- ]
61
- },
62
- "fps": 15.0
63
- },
64
- "episode_index": {
65
- "dtype": "int64",
66
- "shape": [
67
- 1
68
- ],
69
- "names": null,
70
- "fps": 15.0
71
- },
72
- "frame_index": {
73
- "dtype": "int64",
74
- "shape": [
75
- 1
76
- ],
77
- "names": null,
78
- "fps": 15.0
79
- },
80
- "timestamp": {
81
- "dtype": "float32",
82
- "shape": [
83
- 1
84
- ],
85
- "names": null,
86
- "fps": 15.0
87
- },
88
- "next.reward": {
89
- "dtype": "float32",
90
- "shape": [
91
- 1
92
- ],
93
- "names": null,
94
- "fps": 15.0
95
- },
96
- "next.done": {
97
- "dtype": "bool",
98
- "shape": [
99
- 1
100
- ],
101
- "names": null,
102
- "fps": 15.0
103
- },
104
- "index": {
105
- "dtype": "int64",
106
- "shape": [
107
- 1
108
- ],
109
- "names": null,
110
- "fps": 15.0
111
- },
112
- "task_index": {
113
- "dtype": "int64",
114
- "shape": [
115
- 1
116
- ],
117
- "names": null,
118
- "fps": 15.0
119
- }
120
  },
121
- "files_size_in_mb": 500.0
122
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 3
54
+ ],
55
+ "names": {
56
+ "motors": [
57
+ "motor_0",
58
+ "motor_1",
59
+ "motor_2"
60
+ ]
61
+ },
62
+ "fps": 15.0
63
+ },
64
+ "episode_index": {
65
+ "dtype": "int64",
66
+ "shape": [
67
+ 1
68
+ ],
69
+ "names": null,
70
+ "fps": 15.0
71
+ },
72
+ "frame_index": {
73
+ "dtype": "int64",
74
+ "shape": [
75
+ 1
76
+ ],
77
+ "names": null,
78
+ "fps": 15.0
79
+ },
80
+ "timestamp": {
81
+ "dtype": "float32",
82
+ "shape": [
83
+ 1
84
+ ],
85
+ "names": null,
86
+ "fps": 15.0
87
+ },
88
+ "next.reward": {
89
+ "dtype": "float32",
90
+ "shape": [
91
+ 1
92
+ ],
93
+ "names": null,
94
+ "fps": 15.0
95
+ },
96
+ "next.done": {
97
+ "dtype": "bool",
98
+ "shape": [
99
+ 1
100
+ ],
101
+ "names": null,
102
+ "fps": 15.0
103
+ },
104
+ "index": {
105
+ "dtype": "int64",
106
+ "shape": [
107
+ 1
108
+ ],
109
+ "names": null,
110
+ "fps": 15.0
111
+ },
112
+ "task_index": {
113
+ "dtype": "int64",
114
+ "shape": [
115
+ 1
116
+ ],
117
+ "names": null,
118
+ "fps": 15.0
119
+ }
120
+ },
121
+ "files_size_in_mb": 500.0
122
+ }