aractingi commited on
Commit
8d545fa
·
verified ·
1 Parent(s): a02a8f6

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

Browse files
Files changed (1) hide show
  1. meta/info.json +114 -114
meta/info.json CHANGED
@@ -1,117 +1,117 @@
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": "image",
17
- "shape": [
18
- 84,
19
- 84,
20
- 3
21
- ],
22
- "names": [
23
- "height",
24
- "width",
25
- "channel"
26
- ],
27
- "fps": 15.0
28
- },
29
- "observation.state": {
30
- "dtype": "float32",
31
- "shape": [
32
- 4
33
- ],
34
- "names": {
35
- "motors": [
36
- "motor_0",
37
- "motor_1",
38
- "motor_2",
39
- "motor_3"
40
- ]
41
- },
42
- "fps": 15.0
43
- },
44
- "action": {
45
- "dtype": "float32",
46
- "shape": [
47
- 3
48
- ],
49
- "names": {
50
- "motors": [
51
- "motor_0",
52
- "motor_1",
53
- "motor_2"
54
- ]
55
- },
56
- "fps": 15.0
57
- },
58
- "episode_index": {
59
- "dtype": "int64",
60
- "shape": [
61
- 1
62
- ],
63
- "names": null,
64
- "fps": 15.0
65
- },
66
- "frame_index": {
67
- "dtype": "int64",
68
- "shape": [
69
- 1
70
- ],
71
- "names": null,
72
- "fps": 15.0
73
- },
74
- "timestamp": {
75
- "dtype": "float32",
76
- "shape": [
77
- 1
78
- ],
79
- "names": null,
80
- "fps": 15.0
81
- },
82
- "next.reward": {
83
- "dtype": "float32",
84
- "shape": [
85
- 1
86
- ],
87
- "names": null,
88
- "fps": 15.0
89
- },
90
- "next.done": {
91
- "dtype": "bool",
92
- "shape": [
93
- 1
94
- ],
95
- "names": null,
96
- "fps": 15.0
97
- },
98
- "index": {
99
- "dtype": "int64",
100
- "shape": [
101
- 1
102
- ],
103
- "names": null,
104
- "fps": 15.0
105
- },
106
- "task_index": {
107
- "dtype": "int64",
108
- "shape": [
109
- 1
110
- ],
111
- "names": null,
112
- "fps": 15.0
113
- }
114
  },
115
- "data_files_size_in_mb": 100,
116
- "video_files_size_in_mb": 500
117
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "image",
17
+ "shape": [
18
+ 84,
19
+ 84,
20
+ 3
21
+ ],
22
+ "names": [
23
+ "height",
24
+ "width",
25
+ "channel"
26
+ ],
27
+ "fps": 15.0
28
  },
29
+ "observation.state": {
30
+ "dtype": "float32",
31
+ "shape": [
32
+ 4
33
+ ],
34
+ "names": {
35
+ "motors": [
36
+ "motor_0",
37
+ "motor_1",
38
+ "motor_2",
39
+ "motor_3"
40
+ ]
41
+ },
42
+ "fps": 15.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  },
44
+ "action": {
45
+ "dtype": "float32",
46
+ "shape": [
47
+ 3
48
+ ],
49
+ "names": {
50
+ "motors": [
51
+ "motor_0",
52
+ "motor_1",
53
+ "motor_2"
54
+ ]
55
+ },
56
+ "fps": 15.0
57
+ },
58
+ "episode_index": {
59
+ "dtype": "int64",
60
+ "shape": [
61
+ 1
62
+ ],
63
+ "names": null,
64
+ "fps": 15.0
65
+ },
66
+ "frame_index": {
67
+ "dtype": "int64",
68
+ "shape": [
69
+ 1
70
+ ],
71
+ "names": null,
72
+ "fps": 15.0
73
+ },
74
+ "timestamp": {
75
+ "dtype": "float32",
76
+ "shape": [
77
+ 1
78
+ ],
79
+ "names": null,
80
+ "fps": 15.0
81
+ },
82
+ "next.reward": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 1
86
+ ],
87
+ "names": null,
88
+ "fps": 15.0
89
+ },
90
+ "next.done": {
91
+ "dtype": "bool",
92
+ "shape": [
93
+ 1
94
+ ],
95
+ "names": null,
96
+ "fps": 15.0
97
+ },
98
+ "index": {
99
+ "dtype": "int64",
100
+ "shape": [
101
+ 1
102
+ ],
103
+ "names": null,
104
+ "fps": 15.0
105
+ },
106
+ "task_index": {
107
+ "dtype": "int64",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null,
112
+ "fps": 15.0
113
+ }
114
+ },
115
+ "data_files_size_in_mb": 100,
116
+ "video_files_size_in_mb": 500
117
+ }