aractingi HF Staff commited on
Commit
d845742
·
verified ·
1 Parent(s): 83ae07e

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

Browse files
Files changed (1) hide show
  1. meta/info.json +125 -125
meta/info.json CHANGED
@@ -1,128 +1,128 @@
1
  {
2
- "codebase_version": "v3.0",
3
- "robot_type": "unknown",
4
- "total_episodes": 135,
5
- "total_frames": 25016,
6
- "total_tasks": 5,
7
- "chunks_size": 1000,
8
- "fps": 5.0,
9
- "splits": {
10
- "train": "0:135"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
- 4
39
- ],
40
- "names": {
41
- "motors": [
42
- "motor_0",
43
- "motor_1",
44
- "motor_2",
45
- "motor_3"
46
- ]
47
- },
48
- "fps": 5.0
49
- },
50
- "action": {
51
- "dtype": "float32",
52
- "shape": [
53
- 8
54
- ],
55
- "names": {
56
- "motors": [
57
- "motor_0",
58
- "motor_1",
59
- "motor_2",
60
- "motor_3",
61
- "motor_4",
62
- "motor_5",
63
- "motor_6",
64
- "motor_7"
65
- ]
66
- },
67
- "fps": 5.0
68
- },
69
- "timestamp": {
70
- "dtype": "float32",
71
- "shape": [
72
- 1
73
- ],
74
- "names": null,
75
- "fps": 5.0
76
- },
77
- "episode_index": {
78
- "dtype": "int64",
79
- "shape": [
80
- 1
81
- ],
82
- "names": null,
83
- "fps": 5.0
84
- },
85
- "frame_index": {
86
- "dtype": "int64",
87
- "shape": [
88
- 1
89
- ],
90
- "names": null,
91
- "fps": 5.0
92
- },
93
- "next.reward": {
94
- "dtype": "float32",
95
- "shape": [
96
- 1
97
- ],
98
- "names": null,
99
- "fps": 5.0
100
- },
101
- "next.done": {
102
- "dtype": "bool",
103
- "shape": [
104
- 1
105
- ],
106
- "names": null,
107
- "fps": 5.0
108
- },
109
- "index": {
110
- "dtype": "int64",
111
- "shape": [
112
- 1
113
- ],
114
- "names": null,
115
- "fps": 5.0
116
- },
117
- "task_index": {
118
- "dtype": "int64",
119
- "shape": [
120
- 1
121
- ],
122
- "names": null,
123
- "fps": 5.0
124
- }
125
  },
126
- "data_files_size_in_mb": 100,
127
- "video_files_size_in_mb": 500
128
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "codebase_version": "v3.0",
3
+ "robot_type": "unknown",
4
+ "total_episodes": 135,
5
+ "total_frames": 25016,
6
+ "total_tasks": 5,
7
+ "chunks_size": 1000,
8
+ "fps": 5,
9
+ "splits": {
10
+ "train": "0:135"
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
+ 4
39
+ ],
40
+ "names": {
41
+ "motors": [
42
+ "motor_0",
43
+ "motor_1",
44
+ "motor_2",
45
+ "motor_3"
46
+ ]
47
+ },
48
+ "fps": 5.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  },
50
+ "action": {
51
+ "dtype": "float32",
52
+ "shape": [
53
+ 8
54
+ ],
55
+ "names": {
56
+ "motors": [
57
+ "motor_0",
58
+ "motor_1",
59
+ "motor_2",
60
+ "motor_3",
61
+ "motor_4",
62
+ "motor_5",
63
+ "motor_6",
64
+ "motor_7"
65
+ ]
66
+ },
67
+ "fps": 5.0
68
+ },
69
+ "timestamp": {
70
+ "dtype": "float32",
71
+ "shape": [
72
+ 1
73
+ ],
74
+ "names": null,
75
+ "fps": 5.0
76
+ },
77
+ "episode_index": {
78
+ "dtype": "int64",
79
+ "shape": [
80
+ 1
81
+ ],
82
+ "names": null,
83
+ "fps": 5.0
84
+ },
85
+ "frame_index": {
86
+ "dtype": "int64",
87
+ "shape": [
88
+ 1
89
+ ],
90
+ "names": null,
91
+ "fps": 5.0
92
+ },
93
+ "next.reward": {
94
+ "dtype": "float32",
95
+ "shape": [
96
+ 1
97
+ ],
98
+ "names": null,
99
+ "fps": 5.0
100
+ },
101
+ "next.done": {
102
+ "dtype": "bool",
103
+ "shape": [
104
+ 1
105
+ ],
106
+ "names": null,
107
+ "fps": 5.0
108
+ },
109
+ "index": {
110
+ "dtype": "int64",
111
+ "shape": [
112
+ 1
113
+ ],
114
+ "names": null,
115
+ "fps": 5.0
116
+ },
117
+ "task_index": {
118
+ "dtype": "int64",
119
+ "shape": [
120
+ 1
121
+ ],
122
+ "names": null,
123
+ "fps": 5.0
124
+ }
125
+ },
126
+ "data_files_size_in_mb": 100,
127
+ "video_files_size_in_mb": 500
128
+ }