aliberts HF Staff commited on
Commit
1b4a2e9
·
verified ·
1 Parent(s): 304c69c

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. meta/info.json +129 -62
meta/info.json CHANGED
@@ -1,6 +1,5 @@
1
  {
2
  "codebase_version": "v2.0",
3
- "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
4
  "robot_type": "unknown",
5
  "total_episodes": 570,
6
  "total_frames": 358234,
@@ -12,71 +11,139 @@
12
  "splits": {
13
  "train": "0:570"
14
  },
15
- "keys": [
16
- "observation.state",
17
- "action"
18
- ],
19
- "video_keys": [
20
- "observation.images.image",
21
- "observation.images.wrist_image"
22
- ],
23
- "image_keys": [],
24
- "shapes": {
25
- "observation.state": 8,
26
- "action": 7,
27
  "observation.images.image": {
28
- "width": 320,
29
- "height": 240,
30
- "channels": 3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  },
32
  "observation.images.wrist_image": {
33
- "width": 320,
34
- "height": 240,
35
- "channels": 3
36
- }
37
- },
38
- "names": {
39
- "observation.state": [
40
- "motor_0",
41
- "motor_1",
42
- "motor_2",
43
- "motor_3",
44
- "motor_4",
45
- "motor_5",
46
- "motor_6",
47
- "motor_7"
48
- ],
49
- "action": [
50
- "motor_0",
51
- "motor_1",
52
- "motor_2",
53
- "motor_3",
54
- "motor_4",
55
- "motor_5",
56
- "motor_6"
57
- ]
58
- },
59
- "videos": {
60
- "videos_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
61
- "observation.images.image": {
62
- "video.fps": 10.0,
63
- "video.width": 320,
64
- "video.height": 240,
65
- "video.channels": 3,
66
- "video.codec": "av1",
67
- "video.pix_fmt": "yuv420p",
68
- "video.is_depth_map": false,
69
- "has_audio": false
70
  },
71
- "observation.images.wrist_image": {
72
- "video.fps": 10.0,
73
- "video.width": 320,
74
- "video.height": 240,
75
- "video.channels": 3,
76
- "video.codec": "av1",
77
- "video.pix_fmt": "yuv420p",
78
- "video.is_depth_map": false,
79
- "has_audio": false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  }
81
  }
82
  }
 
1
  {
2
  "codebase_version": "v2.0",
 
3
  "robot_type": "unknown",
4
  "total_episodes": 570,
5
  "total_frames": 358234,
 
11
  "splits": {
12
  "train": "0:570"
13
  },
14
+ "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet",
15
+ "video_path": "videos/chunk-{episode_chunk:03d}/{video_key}/episode_{episode_index:06d}.mp4",
16
+ "features": {
 
 
 
 
 
 
 
 
 
17
  "observation.images.image": {
18
+ "dtype": "video",
19
+ "shape": [
20
+ 240,
21
+ 320,
22
+ 3
23
+ ],
24
+ "names": [
25
+ "height",
26
+ "width",
27
+ "channel"
28
+ ],
29
+ "video_info": {
30
+ "video.fps": 10.0,
31
+ "video.codec": "av1",
32
+ "video.pix_fmt": "yuv420p",
33
+ "video.is_depth_map": false,
34
+ "has_audio": false
35
+ }
36
  },
37
  "observation.images.wrist_image": {
38
+ "dtype": "video",
39
+ "shape": [
40
+ 240,
41
+ 320,
42
+ 3
43
+ ],
44
+ "names": [
45
+ "height",
46
+ "width",
47
+ "channel"
48
+ ],
49
+ "video_info": {
50
+ "video.fps": 10.0,
51
+ "video.codec": "av1",
52
+ "video.pix_fmt": "yuv420p",
53
+ "video.is_depth_map": false,
54
+ "has_audio": false
55
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  },
57
+ "language_instruction": {
58
+ "dtype": "string",
59
+ "shape": [
60
+ 1
61
+ ],
62
+ "names": null
63
+ },
64
+ "observation.state": {
65
+ "dtype": "float32",
66
+ "shape": [
67
+ 8
68
+ ],
69
+ "names": {
70
+ "motors": [
71
+ "motor_0",
72
+ "motor_1",
73
+ "motor_2",
74
+ "motor_3",
75
+ "motor_4",
76
+ "motor_5",
77
+ "motor_6",
78
+ "motor_7"
79
+ ]
80
+ }
81
+ },
82
+ "action": {
83
+ "dtype": "float32",
84
+ "shape": [
85
+ 7
86
+ ],
87
+ "names": {
88
+ "motors": [
89
+ "motor_0",
90
+ "motor_1",
91
+ "motor_2",
92
+ "motor_3",
93
+ "motor_4",
94
+ "motor_5",
95
+ "motor_6"
96
+ ]
97
+ }
98
+ },
99
+ "timestamp": {
100
+ "dtype": "float32",
101
+ "shape": [
102
+ 1
103
+ ],
104
+ "names": null
105
+ },
106
+ "episode_index": {
107
+ "dtype": "int64",
108
+ "shape": [
109
+ 1
110
+ ],
111
+ "names": null
112
+ },
113
+ "frame_index": {
114
+ "dtype": "int64",
115
+ "shape": [
116
+ 1
117
+ ],
118
+ "names": null
119
+ },
120
+ "next.reward": {
121
+ "dtype": "float32",
122
+ "shape": [
123
+ 1
124
+ ],
125
+ "names": null
126
+ },
127
+ "next.done": {
128
+ "dtype": "bool",
129
+ "shape": [
130
+ 1
131
+ ],
132
+ "names": null
133
+ },
134
+ "index": {
135
+ "dtype": "int64",
136
+ "shape": [
137
+ 1
138
+ ],
139
+ "names": null
140
+ },
141
+ "task_index": {
142
+ "dtype": "int64",
143
+ "shape": [
144
+ 1
145
+ ],
146
+ "names": null
147
  }
148
  }
149
  }