madokalif commited on
Commit
1cd30e7
·
verified ·
1 Parent(s): 28a050c

Upload checkpoint-4500 (step 4500/16550)

Browse files
.gitattributes CHANGED
@@ -43,3 +43,5 @@ checkpoint-3500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
43
  checkpoint-3500/trainer_state.json filter=lfs diff=lfs merge=lfs -text
44
  checkpoint-4000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
45
  checkpoint-4000/trainer_state.json filter=lfs diff=lfs merge=lfs -text
 
 
 
43
  checkpoint-3500/trainer_state.json filter=lfs diff=lfs merge=lfs -text
44
  checkpoint-4000/tokenizer.json filter=lfs diff=lfs merge=lfs -text
45
  checkpoint-4000/trainer_state.json filter=lfs diff=lfs merge=lfs -text
46
+ checkpoint-4500/tokenizer.json filter=lfs diff=lfs merge=lfs -text
47
+ checkpoint-4500/trainer_state.json filter=lfs diff=lfs merge=lfs -text
checkpoint-4500/action_tokenizer.py ADDED
@@ -0,0 +1,431 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ action_tokenizer.py
3
+
4
+ Extension class; wraps base LLM/VLM tokenizer with logic to discretize and tokenize continuous robot actions.
5
+ """
6
+ from typing import List, Union, Dict, Optional
7
+ import numpy as np
8
+ from transformers import PreTrainedTokenizerBase
9
+ from scipy.stats import norm
10
+ import torch
11
+
12
+ ACTION_TOKEN = '<ACTION{:05d}>'
13
+
14
+ class ActionTokenizer:
15
+ def __init__(
16
+ self,
17
+ tokenizer: PreTrainedTokenizerBase,
18
+ num_bins: int = 256,
19
+ min_action: int = -1,
20
+ max_action: int = 1,
21
+ ):
22
+ self._vocab_size = num_bins
23
+ self.tokenizer = tokenizer
24
+ self.min_action, self.max_action = min_action, max_action
25
+ self.bin_centers = np.linspace(min_action, max_action, num_bins)
26
+
27
+ # add special action tokens to language tokenizer
28
+ token_list = [ACTION_TOKEN.format(i) for i in range(self._vocab_size)]
29
+ self.token_array = np.array(token_list)
30
+
31
+ num_new_tokens = self.tokenizer.add_tokens(token_list, special_tokens=True)
32
+ print(f"Add {num_new_tokens} TRANSLATION TOKENS, tokenizer vocab size {self.tokenizer.vocab_size} / {len(tokenizer)}")
33
+
34
+ self.action_token_begin_idx = self.token_start_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[0])
35
+ self.token_end_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[-1])
36
+
37
+ def __call__(self, action: np.ndarray) -> List[str]:
38
+ """Discretize continuous actions to tokens.
39
+ action: np.ndarray, (n, 7), continuous actions in Cartesian or Spherical coordinates.
40
+ return: np.ndarray, (n, 7), tokens.
41
+ """
42
+ action = np.clip(action, a_min=float(self.min_action), a_max=float(self.max_action))
43
+ ids = np.digitize(action, self.bin_centers, right=True) # [0, 255]
44
+ return self.token_array[ids]
45
+
46
+ def decode_token_ids_to_actions(self, action_token_id: np.ndarray) -> np.ndarray:
47
+ """decode token ids to continuous actions.
48
+ action_token_id: np.ndarray, (n, 7), token ids.
49
+ return: np.ndarray, (n, 7), continuous actions
50
+ """
51
+ ids = action_token_id - self.action_token_begin_idx
52
+ ids = np.clip(ids, a_min=0, a_max=self._vocab_size - 1)
53
+ return self.bin_centers[ids]
54
+
55
+ @property
56
+ def vocab_size(self) -> int:
57
+ return self._vocab_size
58
+
59
+ class TranslationTokenizer:
60
+ def __init__(
61
+ self,
62
+ tokenizer: PreTrainedTokenizerBase,
63
+ num_bins: Dict,
64
+ bin_policy: Optional[Dict] = None,
65
+ use_spherical: bool = True,
66
+ ):
67
+ self.tokenizer = tokenizer
68
+ self.num_theta_bins = num_bins["theta_bins"]
69
+ self.num_phi_bins = num_bins["phi_bins"]
70
+ self.num_r_bins = num_bins["r_bins"]
71
+ self.use_spherical = use_spherical
72
+
73
+ # for indexing
74
+ self.NP = self.num_phi_bins * self.num_r_bins
75
+
76
+ # add special action tokens to language tokenizer
77
+ self._vocab_size = self.num_theta_bins * self.num_phi_bins * self.num_r_bins
78
+ token_list = [ACTION_TOKEN.format(i) for i in range(self._vocab_size)]
79
+ self.token_array = np.array(token_list)
80
+
81
+ num_new_tokens = self.tokenizer.add_tokens(token_list, special_tokens=True)
82
+ print(f"Add {num_new_tokens} TRANSLATION TOKENS, tokenizer vocab size {self.tokenizer.vocab_size} / {len(tokenizer)}")
83
+
84
+ self.token_start_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[0])
85
+ self.token_end_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[-1])
86
+ self.set_bins(bin_policy)
87
+
88
+ def set_bins(self, bin_policy):
89
+ self.theta_bins = np.array(bin_policy["theta_bins"])
90
+ self.phi_bins = np.array(bin_policy["phi_bins"])
91
+ self.r_bins = np.array(bin_policy["r_bins"])
92
+
93
+ def cartesian_to_spherical(self, x, y, z):
94
+ theta = np.arctan2(np.sqrt(x**2 + y**2), z) # polar angle
95
+ phi = np.arctan2(y, x) # azimuthal angle
96
+ r = np.sqrt(x**2 + y**2 + z**2)
97
+ return theta, phi, r
98
+
99
+ def spherical_to_cartesian(self, theta, phi, r):
100
+ x = r * np.sin(theta) * np.cos(phi)
101
+ y = r * np.sin(theta) * np.sin(phi)
102
+ z = r * np.cos(theta)
103
+ return x, y, z
104
+
105
+ def __call__(self, action: np.ndarray) -> List[str]:
106
+ """Discretize continuous actions to tokens.
107
+ action: np.ndarray, (n, 3), continuous actions in Cartesian or Spherical coordinates.
108
+ return: np.ndarray, (n,), tokens.
109
+ """
110
+ if self.use_spherical:
111
+ theta, phi, r = self.cartesian_to_spherical(action[:, 0], action[:, 1], action[:, 2])
112
+ else:
113
+ theta, phi, r = action[:, 0], action[:, 1], action[:, 2]
114
+
115
+ disc_theta = np.digitize(theta, self.theta_bins[1:-1]) # b
116
+ disc_phi = np.digitize(phi, self.phi_bins[1:-1])
117
+ disc_r = np.digitize(r, self.r_bins[1:-1])
118
+ ids = disc_theta * self.NP + disc_phi * self.num_r_bins + disc_r
119
+ return self.token_array[ids]
120
+
121
+ def decode_token_ids_to_actions(self, action_token_id: np.ndarray) -> np.ndarray:
122
+ """decode token ids to continuous actions.
123
+ action_token_id: np.ndarray, (n,), token ids.
124
+ return: np.ndarray, (n, 3), continuous actions
125
+ """
126
+ action_token_id = np.clip(action_token_id, self.token_start_idx, self.token_end_idx)
127
+ ids = action_token_id - self.token_start_idx
128
+ disc_theta, disc_phi, disc_r = ids // self.NP, (ids % self.NP) // self.num_r_bins, ids % self.num_r_bins
129
+
130
+ theta = 0.5 * (self.theta_bins[disc_theta] + self.theta_bins[disc_theta + 1])
131
+ phi = 0.5 * (self.phi_bins[disc_phi] + self.phi_bins[disc_phi + 1])
132
+ r = 0.5 * (self.r_bins[disc_r] + self.r_bins[disc_r + 1])
133
+
134
+ # clip action to [-1, 1], due to the spherical coordinate action space is the circumscribed sphere of the Cartesian action space.
135
+ x, y, z = self.spherical_to_cartesian(theta, phi, r) if self.use_spherical else (theta, phi, r)
136
+ x, y, z = np.clip([x, y, z], -1, 1)
137
+ return np.stack((x, y, z), axis=1)
138
+
139
+ @property
140
+ def vocab_size(self) -> int:
141
+ return self._vocab_size
142
+
143
+ class RotationTokenizer:
144
+ def __init__(
145
+ self,
146
+ tokenizer: PreTrainedTokenizerBase,
147
+ num_bins: Dict,
148
+ bin_policy: Optional[Dict] = None,
149
+ array_begin_idx=None,
150
+ ):
151
+ self.tokenizer = tokenizer
152
+ self.num_roll_bins = num_bins["roll_bins"] # M
153
+ self.num_pitch_bins = num_bins["pitch_bins"] # N
154
+ self.num_yaw_bins = num_bins["yaw_bins"] # P
155
+ self.array_begin_idx = array_begin_idx
156
+
157
+ # for indexing
158
+ self.NP = self.num_pitch_bins * self.num_yaw_bins
159
+
160
+ # add special action tokens to language tokenizer
161
+ self._vocab_size = self.num_roll_bins * self.num_pitch_bins * self.num_yaw_bins
162
+ token_list = [ACTION_TOKEN.format(i + self.array_begin_idx) for i in range(self._vocab_size)]
163
+ self.token_array = np.array(token_list)
164
+
165
+ num_new_tokens = self.tokenizer.add_tokens(token_list, special_tokens=True)
166
+ print(f"Add {num_new_tokens} ROTATION TOKENS to tokenizer, tokenizer vocab size {self.tokenizer.vocab_size} / {len(tokenizer)}")
167
+
168
+ self.token_start_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[0])
169
+ self.token_end_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[-1])
170
+ self.set_bins(bin_policy)
171
+
172
+ def set_bins(self, bin_policy):
173
+ self.roll_bins = np.array(bin_policy["roll_bins"])
174
+ self.pitch_bins = np.array(bin_policy["pitch_bins"])
175
+ self.yaw_bins = np.array(bin_policy["yaw_bins"])
176
+
177
+ def __call__(self, action: np.ndarray) -> List[str]:
178
+ """Discretize continuous actions to tokens.
179
+ action: np.ndarray, (n, 3), continuous actions in Cartesian or Spherical coordinates.
180
+ return: np.ndarray, (n,), tokens.
181
+ """
182
+ roll, pitch, yaw = action[:, 0], action[:, 1], action[:, 2]
183
+ disc_roll = np.clip(np.digitize(roll, self.roll_bins) - 1, 0, self.num_roll_bins - 1)
184
+ disc_pitch = np.clip(np.digitize(pitch, self.pitch_bins) - 1, 0, self.num_pitch_bins - 1)
185
+ disc_yaw = np.clip(np.digitize(yaw, self.yaw_bins) - 1, 0, self.num_yaw_bins - 1)
186
+
187
+ ids = disc_roll * self.NP + disc_pitch * self.num_yaw_bins + disc_yaw
188
+ return self.token_array[ids]
189
+
190
+ def decode_token_ids_to_actions(self, action_token_id: Union[np.int64, np.ndarray]) -> np.ndarray:
191
+ """decode token ids to continuous actions.
192
+ action_token_id: np.ndarray, (n,), token ids.
193
+ return: np.ndarray, (n, 3), continuous actions
194
+ """
195
+ action_token_id = np.clip(action_token_id, a_min=self.token_start_idx, a_max=self.token_end_idx)
196
+ ids = action_token_id - self.token_start_idx
197
+ disc_roll, disc_pitch, disc_yaw = ids // self.NP, (ids % self.NP) // self.num_yaw_bins, ids % self.num_yaw_bins
198
+
199
+ roll = 0.5 * (self.roll_bins[disc_roll] + self.roll_bins[disc_roll + 1])
200
+ pitch = 0.5 * (self.pitch_bins[disc_pitch] + self.pitch_bins[disc_pitch + 1])
201
+ yaw = 0.5 * (self.yaw_bins[disc_yaw] + self.yaw_bins[disc_yaw + 1])
202
+ return np.stack((roll, pitch, yaw), axis=1)
203
+
204
+ @property
205
+ def vocab_size(self) -> int:
206
+ return self._vocab_size
207
+
208
+ class GripperTokenzier:
209
+ def __init__(
210
+ self,
211
+ tokenizer: PreTrainedTokenizerBase,
212
+ num_bins: int = 2,
213
+ array_begin_idx = None,
214
+ ) -> None:
215
+ self.tokenizer = tokenizer
216
+ self.num_bins = num_bins
217
+ self.array_begin_idx = array_begin_idx
218
+ token_list = [ACTION_TOKEN.format(i + self.array_begin_idx) for i in range(self.num_bins)]
219
+ self.token_array = np.array(token_list)
220
+
221
+ num_new_tokens = self.tokenizer.add_tokens(token_list, special_tokens=True)
222
+ print(f"Add {num_new_tokens} GRIPPER TOKENS to tokenizer, tokenizer vocab size {self.tokenizer.vocab_size} / {len(tokenizer)}")
223
+
224
+ self.token_start_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[0])
225
+ self.token_end_idx = self.tokenizer.convert_tokens_to_ids(self.token_array[-1])
226
+
227
+ def __call__(self, action: np.ndarray) -> List[str]:
228
+ """Discretize continuous actions to tokens.
229
+ action: np.ndarray, (n,), continuous actions in Cartesian or Spherical coordinates.
230
+ return: np.ndarray, (n,), tokens.
231
+ """
232
+ ids = np.where(action >= 0.5, 1, 0)
233
+ return self.token_array[ids]
234
+
235
+ def decode_token_ids_to_actions(self, action_token_id: np.ndarray) -> np.ndarray:
236
+ """decode token ids to continuous actions.
237
+ action_token_id: np.ndarray, (n,), token ids.
238
+ return: np.ndarray, (n, 1), continuous actions
239
+ """
240
+ action_token_id = np.clip(action_token_id, self.token_start_idx, self.token_end_idx)
241
+ ids = action_token_id - self.token_start_idx
242
+ actions = np.where(ids == 0, 0., 1.)
243
+ return actions[:, None]
244
+
245
+ @property
246
+ def vocab_size(self) -> int:
247
+ return self.num_bins
248
+
249
+ class SpatialActionTokenizer:
250
+ range_bins = {
251
+ "translation": {
252
+ "theta_bins": (0.0, np.pi),
253
+ "phi_bins": (-np.pi, np.pi),
254
+ "r_bins": (0.0, np.sqrt(3)),
255
+ },
256
+ "rotation": {
257
+ "roll_bins": (-1.0, 1.0),
258
+ "pitch_bins": (-1.0, 1.0),
259
+ "yaw_bins": (-1.0, 1.0),
260
+ },
261
+ }
262
+ def __init__(
263
+ self,
264
+ tokenizer: PreTrainedTokenizerBase,
265
+ num_bins: Dict,
266
+ gs_params: Dict = None,
267
+ bin_policy: Dict = None,
268
+ use_spherical: bool = True,
269
+ min_sigma: float = 0.0,
270
+ min_action: float = -1.0,
271
+ max_action: float = 1.0,
272
+ ):
273
+ """set bin_policy if exist, otherwise, caculate bin_policy from gs_params or use uniform bin grids.
274
+ gs_params: Optional[Dict],
275
+ bin_policy: Optional[Dict],
276
+ """
277
+ self.tokenizer = tokenizer
278
+ self.min_action, self.max_action = min_action, max_action
279
+ self.num_bins = num_bins
280
+ self.min_sigma = min_sigma
281
+
282
+ # set bin policy
283
+ self.bin_policy = bin_policy if bin_policy else self.get_bin_policy(gs_params, self.min_sigma)
284
+ self.translation_tokenizer = TranslationTokenizer(
285
+ self.tokenizer,
286
+ self.num_bins["translation"],
287
+ self.bin_policy["translation"],
288
+ use_spherical=use_spherical
289
+ )
290
+
291
+ self.rotation_tokenizer = RotationTokenizer(
292
+ self.tokenizer,
293
+ self.num_bins["rotation"],
294
+ self.bin_policy["rotation"],
295
+ array_begin_idx=self.translation_tokenizer.vocab_size,
296
+ )
297
+
298
+ self.gripper_tokenizer = GripperTokenzier(
299
+ self.tokenizer,
300
+ self.num_bins["gripper"],
301
+ array_begin_idx=self.translation_tokenizer.vocab_size + self.rotation_tokenizer.vocab_size
302
+ )
303
+ self._vocab_size = self.translation_tokenizer.vocab_size + self.rotation_tokenizer.vocab_size + self.gripper_tokenizer.vocab_size
304
+
305
+ def __call__(self, action: np.ndarray) -> List[str]:
306
+ """Discretize continuous actions to tokens.
307
+ action: np.ndarray, (n, 7), continuous actions in Cartesian coordinates.
308
+ return: np.ndarray, (n, 3), tokens.
309
+ """
310
+ if len(action.shape) == 1:
311
+ assert action.shape[0] == 7, f"action dim mismatch, got action shape: {action.shape}"
312
+ action = action.reshape(1, 7)
313
+ assert action.shape[1] == 7, f"action dim mismatch, got action shape: {action.shape}"
314
+
315
+ action = np.clip(action, a_min=self.min_action, a_max=self.max_action)
316
+ trans_tokens = self.translation_tokenizer(action[:, :3]) # (n,)
317
+ rot_tokens = self.rotation_tokenizer(action[:, 3:6]) # (n,)
318
+ grip_tokens = self.gripper_tokenizer(action[:, 6]) # (n,)
319
+ return np.stack((trans_tokens, rot_tokens, grip_tokens), axis=1) # (n, 3)
320
+
321
+ def decode_token_ids_to_actions(self, action_token_ids: np.ndarray) -> np.ndarray:
322
+ """decode token ids to continuous actions.
323
+ action_token_ids: np.ndarray, (n, 3), token ids.
324
+ """
325
+ if len(action_token_ids.shape) == 1:
326
+ assert action_token_ids.shape[0] == 3, f"action token id numbers mismatich, need 3 got {action_token_ids.shape[0]}"
327
+ action_token_ids = action_token_ids.reshape(1, 3)
328
+ assert action_token_ids.shape[1] == 3, f"token id numbers mismatich, need 3 got {action_token_ids.shape[1]}"
329
+
330
+ trans_action = self.translation_tokenizer.decode_token_ids_to_actions(action_token_ids[:, 0]) # (n, 3)
331
+ rot_action = self.rotation_tokenizer.decode_token_ids_to_actions(action_token_ids[:, 1]) # (n, 3)
332
+ grip_action = self.gripper_tokenizer.decode_token_ids_to_actions(action_token_ids[:, 2]) # (n, 1)
333
+ return np.concatenate((trans_action, rot_action, grip_action), axis=1) # (n, 7)
334
+
335
+ @property
336
+ def vocab_size(self) -> int:
337
+ return self._vocab_size
338
+
339
+ @property
340
+ def action_token_begin_idx(self) -> int:
341
+ return self.translation_tokenizer.token_start_idx
342
+
343
+ def get_bin_policy(self, gs_params=None, min_sigma=0.0):
344
+ bin_policy = {
345
+ "translation": {"theta_bins": None, "phi_bins": None, "r_bins": None},
346
+ "rotation": {"roll_bins": None, "pitch_bins": None, "yaw_bins": None}
347
+ }
348
+ if gs_params is None:
349
+ for bin_type in self.range_bins.keys():
350
+ for bin_key in self.range_bins[bin_type].keys():
351
+ bin_policy[bin_type][bin_key] = np.linspace(*self.range_bins[bin_type][bin_key], self.num_bins[bin_type][bin_key] + 1)
352
+ print(f"use unifrom bin grids ... \n{bin_policy}")
353
+ else:
354
+ for bin_type in self.range_bins.keys():
355
+ for bin_key in self.range_bins[bin_type].keys():
356
+ mu = gs_params[bin_key.split("_")[0].lower()]["mu"]
357
+ sigma = max(gs_params[bin_key.split("_")[0].lower()]["sigma"], min_sigma)
358
+ bin_bound_prob = np.linspace(
359
+ norm.cdf(self.range_bins[bin_type][bin_key][0], loc=mu, scale=sigma),
360
+ norm.cdf(self.range_bins[bin_type][bin_key][1], loc=mu, scale=sigma),
361
+ self.num_bins[bin_type][bin_key] + 1,
362
+ )
363
+ bin_boundary = norm.ppf(bin_bound_prob, loc=mu, scale=sigma)
364
+ bin_policy[bin_type][bin_key] = np.clip(
365
+ bin_boundary,
366
+ self.range_bins[bin_type][bin_key][0],
367
+ self.range_bins[bin_type][bin_key][1],
368
+ ).tolist() # for serialize
369
+ print(f"caculate bin grids from gaussians \n{bin_policy}")
370
+ return bin_policy
371
+
372
+ def get_norm_meshgrid(self, bin_policy):
373
+ grids = []
374
+ policy = {k1: {k2: np.array(v2) for k2, v2 in v1.items()} for k1, v1 in bin_policy.items()}
375
+ # NOTE: use unify k,v order of range_bins (tpr, rpy)
376
+ for bin_type in self.range_bins.keys():
377
+ bounds = []
378
+ for bin_key in self.range_bins[bin_type].keys():
379
+ minb, maxb = self.range_bins[bin_type][bin_key][0], self.range_bins[bin_type][bin_key][1]
380
+ bin_boundary = policy[bin_type][bin_key]
381
+ bin_center = (bin_boundary[:-1] + bin_boundary[1:]) / 2
382
+ bin_center = np.concatenate([np.array([minb]),bin_center,np.array([maxb])]) # padding
383
+ bin_center = (bin_center - minb) / (maxb - minb) # nomalize (m, n, k)
384
+ bounds.append(bin_center)
385
+ # generate grids
386
+ grid_x, grid_y, grid_z = np.meshgrid(*bounds)
387
+ grids += [np.stack([grid_x, grid_y, grid_z], -1).reshape(-1, 3)]
388
+ return grids[0], grids[1] # (N, 3)
389
+
390
+ def spatial_embedding_adaption(self, gs_params, embeddings: torch.nn.Embedding, min_sigma=0.0, adpt_feature=False):
391
+ """
392
+ gs_params0, gs_params1: Dict
393
+ embeddings: tensor (S,E)
394
+ """
395
+ from scipy.interpolate import griddata
396
+ new_policy = self.get_bin_policy(gs_params, min_sigma=min_sigma)
397
+ trans_grids0, rot_grids0 = self.get_norm_meshgrid(self.bin_policy)
398
+ trans_grids1, rot_grids1 = self.get_norm_meshgrid(new_policy)
399
+
400
+ print("overwrite bin policy and tokenizer bins ...")
401
+ self.bin_policy = new_policy
402
+ self.min_sigma = min_sigma
403
+ self.translation_tokenizer.set_bins(new_policy["translation"])
404
+ self.rotation_tokenizer.set_bins(new_policy["rotation"])
405
+
406
+ if adpt_feature:
407
+ emb_data = embeddings.weight.data # (S, e)
408
+ _, E = emb_data.shape
409
+
410
+ # translation
411
+ m, n, k = (self.num_bins["translation"][k] for k in ["theta_bins", "phi_bins", "r_bins"])
412
+ N = m*n*k
413
+ trans_emb_data = emb_data[:N,].reshape(m, n, k, -1).permute(3, 0, 1, 2) # (e, m, n, k)
414
+ pad_emb = torch.nn.functional.pad(trans_emb_data, (1, 1, 1, 1, 1, 1), "replicate").permute(1, 2, 3, 0).reshape(-1, E)
415
+ adpt_trans_emb = griddata(trans_grids0, pad_emb.float(), trans_grids1, method='linear')
416
+ adpt_trans_emb = adpt_trans_emb.reshape(m+2, n+2, k+2, E)[1:-1, 1:-1, 1:-1,]
417
+
418
+ # rotation
419
+ m1, n1, k1 = (self.num_bins["rotation"][k] for k in ["roll_bins", "pitch_bins", "yaw_bins"])
420
+ M = m1*n1*k1
421
+ rot_emb_data = emb_data[N : N + M,].reshape(m1, n1, k1, -1).permute(3, 0, 1, 2) # (e, m, n, k)
422
+ pad_emb = torch.nn.functional.pad(rot_emb_data, (1, 1, 1, 1, 1, 1), "replicate").permute(1, 2, 3, 0).reshape(-1, E)
423
+ adpt_rot_emb = griddata(rot_grids0, pad_emb.float(), rot_grids1, method='linear')
424
+ adpt_rot_emb = adpt_rot_emb.reshape(m1+2, n1+2, k1+2, E)[1:-1, 1:-1, 1:-1,]
425
+
426
+ # set data
427
+ device, dtype = embeddings.weight.data.device, embeddings.weight.data.dtype
428
+ embeddings.weight.data[:N] = torch.Tensor(adpt_trans_emb.reshape(-1, E), device=device).to(dtype)
429
+ embeddings.weight.data[N:N+M] = torch.Tensor(adpt_rot_emb.reshape(-1, E), device=device).to(dtype)
430
+ print("DONE! adapt spatial embedding to new gaussian distributation finished.")
431
+ print(embeddings.weight.data)
checkpoint-4500/adapter_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "IPEC-COMMUNITY/spatialvla-4b-224-pt",
5
+ "bias": "none",
6
+ "eva_config": null,
7
+ "exclude_modules": null,
8
+ "fan_in_fan_out": false,
9
+ "inference_mode": true,
10
+ "init_lora_weights": "gaussian",
11
+ "layer_replication": null,
12
+ "layers_pattern": null,
13
+ "layers_to_transform": null,
14
+ "loftq_config": {},
15
+ "lora_alpha": 32,
16
+ "lora_bias": false,
17
+ "lora_dropout": 0.0,
18
+ "megatron_config": null,
19
+ "megatron_core": "megatron.core",
20
+ "modules_to_save": [],
21
+ "peft_type": "LORA",
22
+ "r": 32,
23
+ "rank_pattern": {},
24
+ "revision": null,
25
+ "target_modules": [
26
+ "v_proj",
27
+ "down_proj",
28
+ "fc1",
29
+ "up_proj",
30
+ "linear",
31
+ "position_embedding_head.0",
32
+ "o_proj",
33
+ "k_proj",
34
+ "q_proj",
35
+ "fc2",
36
+ "out_proj",
37
+ "position_embedding_head.3",
38
+ "gate_proj"
39
+ ],
40
+ "task_type": "CAUSAL_LM",
41
+ "use_dora": false,
42
+ "use_rslora": false
43
+ }
checkpoint-4500/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d58ff8bca30ca305375721fbcaab299fc732bf7f6f328726a0bd6bfc7cbcc11d
3
+ size 118478120
checkpoint-4500/global_step4499/bf16_zero_pp_rank_0_mp_rank_00_optim_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4f0d2ab40b2872a2c25686d6ffa6927cd1c00e5f9340d6adf3b423068e4b739
3
+ size 710309328
checkpoint-4500/global_step4499/mp_rank_00_model_states.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:053856c95790d845b489fe613dffce8fc70a90e38f0c6226b3d998ad6e265f11
3
+ size 119108780
checkpoint-4500/latest ADDED
@@ -0,0 +1 @@
 
 
1
+ global_step4499
checkpoint-4500/preprocessor_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "auto_map": {
3
+ "AutoProcessor": "processing_spatialvla.SpatialVLAProcessor"
4
+ },
5
+ "do_convert_rgb": null,
6
+ "do_normalize": false,
7
+ "do_rescale": true,
8
+ "do_resize": true,
9
+ "image_mean": [
10
+ 0.5,
11
+ 0.5,
12
+ 0.5
13
+ ],
14
+ "image_processor_type": "SiglipImageProcessor",
15
+ "image_seq_length": 256,
16
+ "image_std": [
17
+ 0.5,
18
+ 0.5,
19
+ 0.5
20
+ ],
21
+ "processor_class": "SpatialVLAProcessor",
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "height": 224,
26
+ "width": 224
27
+ }
28
+ }
checkpoint-4500/processing_spatialvla.py ADDED
@@ -0,0 +1,254 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2024 The HuggingFace Inc. team.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ import logging
16
+ from typing import List, Optional, Union, Dict
17
+ import numpy as np
18
+ import torch
19
+ from transformers.feature_extraction_utils import BatchFeature
20
+ from transformers.image_utils import ImageInput, is_valid_image
21
+ from transformers.processing_utils import Unpack, _validate_images_text_input_order, ProcessorMixin
22
+ from transformers.tokenization_utils_base import AddedToken, PreTokenizedInput, TextInput
23
+ from transformers.utils import logging
24
+ from transformers.models.paligemma.processing_paligemma import (
25
+ make_batched_images,
26
+ build_string_from_input,
27
+ _is_str_or_image,
28
+ PaliGemmaProcessorKwargs,
29
+ IMAGE_TOKEN,
30
+ EXTRA_TOKENS
31
+ )
32
+ from .action_tokenizer import SpatialActionTokenizer
33
+ logger = logging.get_logger(__name__)
34
+
35
+ class SpatialVLAProcessor(ProcessorMixin):
36
+ attributes = ["image_processor", "tokenizer"]
37
+ valid_kwargs = ["chat_template"]
38
+ image_processor_class = "SiglipImageProcessor"
39
+ tokenizer_class = ("GemmaTokenizer", "GemmaTokenizerFast")
40
+
41
+ def __init__(
42
+ self,
43
+ image_processor=None,
44
+ tokenizer=None,
45
+ chat_template=None,
46
+ statistics: Optional[dict] = None,
47
+ bin_policy=None,
48
+ intrinsic_config=None,
49
+ action_config=None,
50
+ num_obs_steps=1,
51
+ obs_delta=1,
52
+ action_chunk_size=1,
53
+ min_sigma=0.0,
54
+ **kwargs,
55
+ ):
56
+ if image_processor is None:
57
+ raise ValueError("You need to specify an `image_processor`.")
58
+ if tokenizer is None:
59
+ raise ValueError("You need to specify a `tokenizer`.")
60
+ if not hasattr(image_processor, "image_seq_length"):
61
+ raise ValueError("Image processor is missing an `image_seq_length` attribute.")
62
+
63
+ self.image_seq_length = image_processor.image_seq_length
64
+
65
+ if not hasattr(tokenizer, "image_token"):
66
+ image_token = AddedToken(IMAGE_TOKEN, normalized=False, special=True)
67
+ tokens_to_add = {"additional_special_tokens": [image_token]}
68
+ tokenizer.add_special_tokens(tokens_to_add)
69
+ self.image_token_id = tokenizer.convert_tokens_to_ids(IMAGE_TOKEN)
70
+ else:
71
+ self.image_token_id = tokenizer.image_token_id
72
+
73
+ tokenizer.add_tokens(EXTRA_TOKENS)
74
+ tokenizer.add_bos_token = False
75
+ tokenizer.add_eos_token = False
76
+
77
+ super().__init__(image_processor, tokenizer, chat_template=chat_template)
78
+
79
+ # action tokenizer
80
+ self.statistics = statistics if statistics else {}
81
+ self.bin_policy = bin_policy
82
+ self.min_sigma = min_sigma
83
+ self.intrinsic_config = intrinsic_config
84
+ self.action_config = action_config
85
+ self.num_obs_steps = num_obs_steps
86
+ self.obs_delta = obs_delta
87
+ self.action_chunk_size = action_chunk_size
88
+ self.dataset_intrinsics = {}
89
+ height, width = image_processor.size["height"], image_processor.size["width"]
90
+
91
+ # scale intrinsic matrix
92
+ for k, v in intrinsic_config.items():
93
+ K = torch.tensor(v["intrinsic"]).float()
94
+ K[:2] *= torch.tensor([width / v["width"], height / v["height"]])[:, None]
95
+ self.dataset_intrinsics[k] = K
96
+
97
+ self.action_tokenizer = SpatialActionTokenizer(
98
+ tokenizer=tokenizer, num_bins=action_config["num_bins"],
99
+ bin_policy=bin_policy, use_spherical=action_config["use_spherical"],
100
+ min_sigma=min_sigma,
101
+ )
102
+
103
+ def __call__(
104
+ self,
105
+ images: ImageInput = None,
106
+ text: Union[TextInput, PreTokenizedInput, List[TextInput], List[PreTokenizedInput]] = None,
107
+ unnorm_key: Optional[str] = None,
108
+ suffix_actions: Optional[np.array] = None, # (t e)
109
+ **kwargs: Unpack[PaliGemmaProcessorKwargs],
110
+ ) -> BatchFeature:
111
+ images, text = _validate_images_text_input_order(images, text)
112
+
113
+ output_kwargs = self._merge_kwargs(
114
+ PaliGemmaProcessorKwargs,
115
+ tokenizer_init_kwargs=self.tokenizer.init_kwargs,
116
+ **kwargs,
117
+ )
118
+ if suffix_actions is not None:
119
+ action_tokens = self.action_tokenizer(suffix_actions) # (n,3)
120
+ suffix="".join(action_tokens.flatten())
121
+ else:
122
+ suffix = output_kwargs["text_kwargs"].pop("suffix", None)
123
+
124
+ return_token_type_ids = True if suffix is not None else False
125
+
126
+ if images is None:
127
+ raise ValueError("`images` are expected as arguments to a `PaliGemmaProcessor` instance.")
128
+ if text is None:
129
+ logger.warning_once( "You are using PaliGemma without a text prefix. It will perform as a picture-captioning model.")
130
+ text = ""
131
+
132
+ if _is_str_or_image(text):
133
+ text = [text]
134
+ elif isinstance(text, list) and _is_str_or_image(text[0]):
135
+ pass
136
+
137
+ if text is not None and images is not None:
138
+ if not any(IMAGE_TOKEN in sample for sample in text):
139
+ if isinstance(text, List) and isinstance(images, List):
140
+ if len(images) != len(text):
141
+ raise ValueError(
142
+ f"Received {len(images)} images for {len(text)} prompts. Each prompt should be associated with an image or list of images."
143
+ )
144
+ if is_valid_image(images):
145
+ images = [[images]]
146
+ elif isinstance(images, list) and is_valid_image(images[0]):
147
+ images = [[image] for image in images]
148
+ elif not (isinstance(images, list) and isinstance(images[0], list) and is_valid_image(images[0][0])):
149
+ raise ValueError("images must be an image, list of images or list of list of images")
150
+ if suffix is not None and _is_str_or_image(suffix): suffix = [suffix]
151
+ if suffix is not None: suffix = [sfx + self.tokenizer.eos_token for sfx in suffix]
152
+ input_strings = [
153
+ build_string_from_input(
154
+ prompt=prompt,
155
+ bos_token=self.tokenizer.bos_token,
156
+ image_seq_len=self.image_seq_length,
157
+ image_token=IMAGE_TOKEN,
158
+ num_images=len(image_list) if isinstance(image_list, list) else 1,
159
+ )
160
+ for prompt, image_list in zip(text, images)
161
+ ]
162
+ images = make_batched_images(images)
163
+ else:
164
+ expanded_samples = []
165
+ for sample in text:
166
+ expanded_sample = sample.replace(IMAGE_TOKEN, IMAGE_TOKEN * self.image_seq_length)
167
+ bos_rfind_index = expanded_sample.rfind(IMAGE_TOKEN)
168
+ bos_index = bos_rfind_index + len(IMAGE_TOKEN) if bos_rfind_index != -1 else 0
169
+ expanded_sample = (
170
+ expanded_sample[:bos_index] + self.tokenizer.bos_token + expanded_sample[bos_index:]
171
+ )
172
+ expanded_samples.append(expanded_sample)
173
+ input_strings = [f"{sample}\n" for sample in expanded_samples]
174
+ pixel_values = self.image_processor(images, **output_kwargs["images_kwargs"])["pixel_values"]
175
+
176
+ if output_kwargs["text_kwargs"].get("max_length", None) is not None:
177
+ output_kwargs["text_kwargs"]["max_length"] += self.image_seq_length
178
+
179
+ inputs = self.tokenizer(
180
+ input_strings,
181
+ text_pair=suffix,
182
+ return_token_type_ids=return_token_type_ids,
183
+ **output_kwargs["text_kwargs"],
184
+ )
185
+
186
+ intrinsic = self.dataset_intrinsics[unnorm_key] if unnorm_key in self.dataset_intrinsics else self.dataset_intrinsics["default"]
187
+ return_data = {**inputs, "pixel_values": pixel_values, "intrinsic": intrinsic}
188
+
189
+ if return_token_type_ids:
190
+ labels = inputs["input_ids"].masked_fill(inputs["token_type_ids"] == 0, -100)
191
+ return_data.update({"labels": labels})
192
+ return BatchFeature(data=return_data)
193
+
194
+ # Copied from transformers.models.clip.processing_clip.CLIPProcessor.batch_decode with CLIP->Gemma
195
+ def batch_decode(self, *args, **kwargs):
196
+ """
197
+ This method forwards all its arguments to GemmaTokenizerFast's [`~PreTrainedTokenizer.batch_decode`]. Please
198
+ refer to the docstring of this method for more information.
199
+ """
200
+ return self.tokenizer.batch_decode(*args, **kwargs)
201
+
202
+ # Copied from transformers.models.clip.processing_clip.CLIPProcessor.decode with CLIP->Gemma
203
+ def decode(self, *args, **kwargs):
204
+ """
205
+ This method forwards all its arguments to GemmaTokenizerFast's [`~PreTrainedTokenizer.decode`]. Please refer to
206
+ the docstring of this method for more information.
207
+ """
208
+ return self.tokenizer.decode(*args, **kwargs)
209
+
210
+ @property
211
+ def model_input_names(self):
212
+ tokenizer_input_names = self.tokenizer.model_input_names
213
+ image_processor_input_names = self.image_processor.model_input_names
214
+ return list(dict.fromkeys(tokenizer_input_names + image_processor_input_names))
215
+
216
+ def decode_actions(
217
+ self,
218
+ generation_outputs: torch.Tensor,
219
+ unnorm_key: Optional[str] = None,
220
+ ) -> Dict[str, torch.Tensor]:
221
+ action_token_num = 3 # translation + rotation + gripper
222
+ predicted_action_token_ids = generation_outputs[0, : action_token_num * self.action_chunk_size].detach().cpu().long().numpy()
223
+ assert self.tokenizer.eos_token != predicted_action_token_ids[-1], "[error] actions contain EOS token, please check you truncation settings!"
224
+
225
+ if predicted_action_token_ids.shape[0] < action_token_num * self.action_chunk_size: # pad with zeros
226
+ logger.warning(f"Padding zero action!")
227
+ predicted_action_token_ids = np.concatenate(
228
+ [
229
+ predicted_action_token_ids,
230
+ np.zeros(action_token_num * self.action_chunk_size - predicted_action_token_ids.shape[0], dtype=np.longlong),
231
+ ]
232
+ )
233
+ predicted_action_token_ids = predicted_action_token_ids.reshape(-1, action_token_num)
234
+ normalized_action_chunks = self.action_tokenizer.decode_token_ids_to_actions(predicted_action_token_ids)
235
+
236
+ if unnorm_key is None:
237
+ logger.warning(f"unnorm_key {unnorm_key} is not in statistics, use next one")
238
+ unnorm_key = next(self.statistics.keys())
239
+ action_norm_stats = self.statistics[unnorm_key]["action"]
240
+
241
+ action_dim = len(action_norm_stats["q01"])
242
+ mask = np.array(action_norm_stats.get("mask", np.ones(action_dim)), dtype=bool)
243
+ action_high, action_low = np.array(action_norm_stats["q99"]), np.array(action_norm_stats["q01"])
244
+
245
+ actions = []
246
+ for normalized_actions in normalized_action_chunks:
247
+ action = np.where(
248
+ mask,
249
+ 0.5 * (normalized_actions + 1) * (action_high - action_low) + action_low,
250
+ normalized_actions,
251
+ )
252
+ actions.append(action)
253
+ actions = np.stack(actions)
254
+ return {"actions": actions, "action_ids": predicted_action_token_ids}
checkpoint-4500/processor_config.json ADDED
@@ -0,0 +1,3827 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "action_chunk_size": 4,
3
+ "action_config": {
4
+ "distribution": "gaussian",
5
+ "num_bins": {
6
+ "gripper": 2,
7
+ "rotation": {
8
+ "pitch_bins": 16,
9
+ "roll_bins": 16,
10
+ "yaw_bins": 16
11
+ },
12
+ "total": 8194,
13
+ "translation": {
14
+ "phi_bins": 32,
15
+ "r_bins": 8,
16
+ "theta_bins": 16
17
+ }
18
+ },
19
+ "use_spherical": true
20
+ },
21
+ "auto_map": {
22
+ "AutoProcessor": "processing_spatialvla.SpatialVLAProcessor"
23
+ },
24
+ "bin_policy": {
25
+ "rotation": {
26
+ "pitch_bins": [
27
+ -1.0,
28
+ -0.6785015894338633,
29
+ -0.516796358161167,
30
+ -0.3978678314258641,
31
+ -0.29907867426319246,
32
+ -0.21158608510441518,
33
+ -0.13081651669135252,
34
+ -0.05392877158612959,
35
+ 0.02113881590329744,
36
+ 0.0961313749999302,
37
+ 0.17278161860263358,
38
+ 0.25310821063971767,
39
+ 0.33985580585203445,
40
+ 0.4373796767941653,
41
+ 0.5539451994131283,
42
+ 0.7100308525313351,
43
+ 0.9999999999999999
44
+ ],
45
+ "roll_bins": [
46
+ -1.0,
47
+ -0.7121298287894609,
48
+ -0.5564581819056097,
49
+ -0.440071773405789,
50
+ -0.3426461358467384,
51
+ -0.25595819395001274,
52
+ -0.17566893098554964,
53
+ -0.09904102149491184,
54
+ -0.024059205927849478,
55
+ 0.05100802578115137,
56
+ 0.12790631705350436,
57
+ 0.20869987492610076,
58
+ 0.2962359118858219,
59
+ 0.3951018734752948,
60
+ 0.5141779624401348,
61
+ 0.6762450862353777,
62
+ 1.0
63
+ ],
64
+ "yaw_bins": [
65
+ -1.0,
66
+ -0.6910047644696934,
67
+ -0.5313988287371314,
68
+ -0.4133376866679583,
69
+ -0.3150057290436059,
70
+ -0.22777658299365705,
71
+ -0.14715771012527992,
72
+ -0.07034330907230311,
73
+ 0.004712965738136004,
74
+ 0.07975252682496348,
75
+ 0.15651401950954372,
76
+ 0.23703420508371892,
77
+ 0.32409736463921823,
78
+ 0.4221473708283458,
79
+ 0.5396818128475004,
80
+ 0.6980345545587262,
81
+ 1.0
82
+ ]
83
+ },
84
+ "translation": {
85
+ "phi_bins": [
86
+ -3.1415926535897927,
87
+ -2.5597806593194092,
88
+ -2.1899702111786126,
89
+ -1.9071489188814448,
90
+ -1.6724463283141142,
91
+ -1.4683467869586326,
92
+ -1.2853487663890668,
93
+ -1.1176672338183495,
94
+ -0.961484031585327,
95
+ -0.8141204989748655,
96
+ -0.6736024210639718,
97
+ -0.5384120746595923,
98
+ -0.40733740832383114,
99
+ -0.279375002438531,
100
+ -0.15366425283265983,
101
+ -0.029440234757304742,
102
+ 0.0940021938080639,
103
+ 0.2173378027339352,
104
+ 0.34123726674747146,
105
+ 0.46639302836823826,
106
+ 0.5935473848733163,
107
+ 0.7235258808185444,
108
+ 0.857280204661428,
109
+ 0.9959469801163238,
110
+ 1.1409329906705301,
111
+ 1.2940454053271015,
112
+ 1.4577019170652383,
113
+ 1.6352913749303837,
114
+ 1.8318407243899377,
115
+ 2.0553733807372363,
116
+ 2.320069275631962,
117
+ 2.6552436426949604,
118
+ 3.141592653589793
119
+ ],
120
+ "r_bins": [
121
+ 2.220446049250313e-16,
122
+ 0.19677118231539265,
123
+ 0.3506298590504556,
124
+ 0.4881976731379496,
125
+ 0.621970275186659,
126
+ 0.7620978861167458,
127
+ 0.9228346010157172,
128
+ 1.1393317208802278,
129
+ 1.7320508075688767
130
+ ],
131
+ "theta_bins": [
132
+ 0.0,
133
+ 0.7067187338585303,
134
+ 0.9814199309359143,
135
+ 1.1752042640550222,
136
+ 1.3331175751173345,
137
+ 1.4713205387280388,
138
+ 1.5977846301055496,
139
+ 1.7172771763957553,
140
+ 1.8331248472067783,
141
+ 1.9480194771467687,
142
+ 2.0644993054216925,
143
+ 2.1853608246107656,
144
+ 2.314189357400805,
145
+ 2.456314355008026,
146
+ 2.621028843347318,
147
+ 2.828352346005421,
148
+ 3.141592653589793
149
+ ]
150
+ }
151
+ },
152
+ "intrinsic_config": {
153
+ "bridge_orig/1.0.0": {
154
+ "height": 480,
155
+ "intrinsic": [
156
+ [
157
+ 623.588,
158
+ 0,
159
+ 319.501
160
+ ],
161
+ [
162
+ 0,
163
+ 623.588,
164
+ 239.545
165
+ ],
166
+ [
167
+ 0,
168
+ 0,
169
+ 1
170
+ ]
171
+ ],
172
+ "width": 640
173
+ },
174
+ "default": {
175
+ "height": 480,
176
+ "intrinsic": [
177
+ [
178
+ 623.588,
179
+ 0,
180
+ 319.501
181
+ ],
182
+ [
183
+ 0,
184
+ 623.588,
185
+ 239.545
186
+ ],
187
+ [
188
+ 0,
189
+ 0,
190
+ 1
191
+ ]
192
+ ],
193
+ "width": 640
194
+ }
195
+ },
196
+ "min_sigma": 0.0,
197
+ "num_obs_steps": 1,
198
+ "obs_delta": 1,
199
+ "processor_class": "SpatialVLAProcessor",
200
+ "statistics": {
201
+ "austin_buds_dataset_converted_externally_to_rlds/0.1.0": {
202
+ "action": {
203
+ "mask": [
204
+ true,
205
+ true,
206
+ true,
207
+ true,
208
+ true,
209
+ true,
210
+ false
211
+ ],
212
+ "max": [
213
+ 1.0,
214
+ 1.0,
215
+ 1.0,
216
+ 0.0,
217
+ 0.0,
218
+ 0.0,
219
+ 1.0
220
+ ],
221
+ "mean": [
222
+ -0.07678329944610596,
223
+ 0.0036849123425781727,
224
+ 0.05644941329956055,
225
+ 0.0,
226
+ 0.0,
227
+ 0.0,
228
+ 0.3510494828224182
229
+ ],
230
+ "min": [
231
+ -1.0,
232
+ -1.0,
233
+ -1.0,
234
+ 0.0,
235
+ 0.0,
236
+ 0.0,
237
+ 0.0
238
+ ],
239
+ "q01": [
240
+ -1.0,
241
+ -0.9599999785423279,
242
+ -0.8714285492897034,
243
+ 0.0,
244
+ 0.0,
245
+ 0.0,
246
+ 0.0
247
+ ],
248
+ "q99": [
249
+ 1.0,
250
+ 0.8600000143051147,
251
+ 1.0,
252
+ 0.0,
253
+ 0.0,
254
+ 0.0,
255
+ 1.0
256
+ ],
257
+ "std": [
258
+ 0.6367746591567993,
259
+ 0.3788914680480957,
260
+ 0.47796377539634705,
261
+ 0.0,
262
+ 0.0,
263
+ 0.0,
264
+ 0.4772108495235443
265
+ ]
266
+ },
267
+ "num_trajectories": 50,
268
+ "num_transitions": 34112,
269
+ "proprio": {
270
+ "max": [
271
+ 0.0,
272
+ 0.0,
273
+ 0.0,
274
+ 0.0,
275
+ 0.0,
276
+ 0.0,
277
+ 0.0
278
+ ],
279
+ "mean": [
280
+ 0.0,
281
+ 0.0,
282
+ 0.0,
283
+ 0.0,
284
+ 0.0,
285
+ 0.0,
286
+ 0.0
287
+ ],
288
+ "min": [
289
+ 0.0,
290
+ 0.0,
291
+ 0.0,
292
+ 0.0,
293
+ 0.0,
294
+ 0.0,
295
+ 0.0
296
+ ],
297
+ "q01": [
298
+ 0.0,
299
+ 0.0,
300
+ 0.0,
301
+ 0.0,
302
+ 0.0,
303
+ 0.0,
304
+ 0.0
305
+ ],
306
+ "q99": [
307
+ 0.0,
308
+ 0.0,
309
+ 0.0,
310
+ 0.0,
311
+ 0.0,
312
+ 0.0,
313
+ 0.0
314
+ ],
315
+ "std": [
316
+ 0.0,
317
+ 0.0,
318
+ 0.0,
319
+ 0.0,
320
+ 0.0,
321
+ 0.0,
322
+ 0.0
323
+ ]
324
+ }
325
+ },
326
+ "austin_sailor_dataset_converted_externally_to_rlds/0.1.0": {
327
+ "action": {
328
+ "mask": [
329
+ true,
330
+ true,
331
+ true,
332
+ true,
333
+ true,
334
+ true,
335
+ false
336
+ ],
337
+ "max": [
338
+ 1.0,
339
+ 1.0,
340
+ 1.0,
341
+ 0.0,
342
+ 0.0,
343
+ 0.375,
344
+ 1.0
345
+ ],
346
+ "mean": [
347
+ 0.011825386434793472,
348
+ 0.0064610871486365795,
349
+ 0.060236409306526184,
350
+ 0.0,
351
+ 0.0,
352
+ 0.0016465834341943264,
353
+ 0.5260950326919556
354
+ ],
355
+ "min": [
356
+ -1.0,
357
+ -1.0,
358
+ -1.0,
359
+ 0.0,
360
+ 0.0,
361
+ -0.375,
362
+ 0.0
363
+ ],
364
+ "q01": [
365
+ -1.0,
366
+ -0.9828571677207947,
367
+ -0.6000000238418579,
368
+ 0.0,
369
+ 0.0,
370
+ -0.17249999940395355,
371
+ 0.0
372
+ ],
373
+ "q99": [
374
+ 1.0,
375
+ 0.9457142949104309,
376
+ 1.0,
377
+ 0.0,
378
+ 0.0,
379
+ 0.17892856895923615,
380
+ 1.0
381
+ ],
382
+ "std": [
383
+ 0.46348854899406433,
384
+ 0.41240164637565613,
385
+ 0.41186293959617615,
386
+ 0.0,
387
+ 0.0,
388
+ 0.0578608438372612,
389
+ 0.49893733859062195
390
+ ]
391
+ },
392
+ "num_trajectories": 240,
393
+ "num_transitions": 353094,
394
+ "proprio": {
395
+ "max": [
396
+ 0.0,
397
+ 0.0,
398
+ 0.0,
399
+ 0.0,
400
+ 0.0,
401
+ 0.0,
402
+ 0.0
403
+ ],
404
+ "mean": [
405
+ 0.0,
406
+ 0.0,
407
+ 0.0,
408
+ 0.0,
409
+ 0.0,
410
+ 0.0,
411
+ 0.0
412
+ ],
413
+ "min": [
414
+ 0.0,
415
+ 0.0,
416
+ 0.0,
417
+ 0.0,
418
+ 0.0,
419
+ 0.0,
420
+ 0.0
421
+ ],
422
+ "q01": [
423
+ 0.0,
424
+ 0.0,
425
+ 0.0,
426
+ 0.0,
427
+ 0.0,
428
+ 0.0,
429
+ 0.0
430
+ ],
431
+ "q99": [
432
+ 0.0,
433
+ 0.0,
434
+ 0.0,
435
+ 0.0,
436
+ 0.0,
437
+ 0.0,
438
+ 0.0
439
+ ],
440
+ "std": [
441
+ 0.0,
442
+ 0.0,
443
+ 0.0,
444
+ 0.0,
445
+ 0.0,
446
+ 0.0,
447
+ 0.0
448
+ ]
449
+ }
450
+ },
451
+ "austin_sirius_dataset_converted_externally_to_rlds/0.1.0": {
452
+ "action": {
453
+ "mask": [
454
+ true,
455
+ true,
456
+ true,
457
+ true,
458
+ true,
459
+ true,
460
+ false
461
+ ],
462
+ "max": [
463
+ 1.0002285242080688,
464
+ 0.960608720779419,
465
+ 1.105179786682129,
466
+ 0.0,
467
+ 0.0,
468
+ 0.341785728931427,
469
+ 1.0
470
+ ],
471
+ "mean": [
472
+ 0.077476866543293,
473
+ 0.031955525279045105,
474
+ 0.04244735836982727,
475
+ 0.0,
476
+ 0.0,
477
+ -0.01603454165160656,
478
+ 0.43260180950164795
479
+ ],
480
+ "min": [
481
+ -1.0183025598526,
482
+ -0.9800000190734863,
483
+ -0.9774575233459473,
484
+ 0.0,
485
+ 0.0,
486
+ -0.34607142210006714,
487
+ 0.0
488
+ ],
489
+ "q01": [
490
+ -0.780905865430832,
491
+ -0.5667179036140442,
492
+ -0.5254343223571777,
493
+ 0.0,
494
+ 0.0,
495
+ -0.28495091378688814,
496
+ 0.0
497
+ ],
498
+ "q99": [
499
+ 0.9569637751579284,
500
+ 0.6971374487876891,
501
+ 0.8124888157844541,
502
+ 0.0,
503
+ 0.0,
504
+ 0.1971428543329239,
505
+ 1.0
506
+ ],
507
+ "std": [
508
+ 0.3906330168247223,
509
+ 0.2998153865337372,
510
+ 0.2782270312309265,
511
+ 0.0,
512
+ 0.0,
513
+ 0.08120641857385635,
514
+ 0.49528202414512634
515
+ ]
516
+ },
517
+ "num_trajectories": 559,
518
+ "num_transitions": 279939,
519
+ "proprio": {
520
+ "max": [
521
+ 0.0,
522
+ 0.0,
523
+ 0.0,
524
+ 0.0,
525
+ 0.0,
526
+ 0.0,
527
+ 0.0
528
+ ],
529
+ "mean": [
530
+ 0.0,
531
+ 0.0,
532
+ 0.0,
533
+ 0.0,
534
+ 0.0,
535
+ 0.0,
536
+ 0.0
537
+ ],
538
+ "min": [
539
+ 0.0,
540
+ 0.0,
541
+ 0.0,
542
+ 0.0,
543
+ 0.0,
544
+ 0.0,
545
+ 0.0
546
+ ],
547
+ "q01": [
548
+ 0.0,
549
+ 0.0,
550
+ 0.0,
551
+ 0.0,
552
+ 0.0,
553
+ 0.0,
554
+ 0.0
555
+ ],
556
+ "q99": [
557
+ 0.0,
558
+ 0.0,
559
+ 0.0,
560
+ 0.0,
561
+ 0.0,
562
+ 0.0,
563
+ 0.0
564
+ ],
565
+ "std": [
566
+ 0.0,
567
+ 0.0,
568
+ 0.0,
569
+ 0.0,
570
+ 0.0,
571
+ 0.0,
572
+ 0.0
573
+ ]
574
+ }
575
+ },
576
+ "bc_z/0.1.0": {
577
+ "action": {
578
+ "mask": [
579
+ true,
580
+ true,
581
+ true,
582
+ true,
583
+ true,
584
+ true,
585
+ false
586
+ ],
587
+ "max": [
588
+ 0.2165454924106598,
589
+ 0.1251407265663147,
590
+ 0.10772687941789627,
591
+ 0.33544227480888367,
592
+ 0.28117990493774414,
593
+ 0.40614867210388184,
594
+ 1.0
595
+ ],
596
+ "mean": [
597
+ -0.009958645328879356,
598
+ 0.0008958434336818755,
599
+ 0.00499522453173995,
600
+ 0.000297540333122015,
601
+ -0.008734511211514473,
602
+ -0.03068969026207924,
603
+ 0.8344562649726868
604
+ ],
605
+ "min": [
606
+ -0.1677047461271286,
607
+ -0.14630407094955444,
608
+ -0.10066790133714676,
609
+ -0.29421567916870117,
610
+ -0.32101404666900635,
611
+ -0.4635624885559082,
612
+ 0.0
613
+ ],
614
+ "q01": [
615
+ -0.09220654994249344,
616
+ -0.06456145539879798,
617
+ -0.049121275544166565,
618
+ -0.11594625547528267,
619
+ -0.14152548640966414,
620
+ -0.2251061636209488,
621
+ 0.0
622
+ ],
623
+ "q99": [
624
+ 0.07628866866230968,
625
+ 0.058019736707210584,
626
+ 0.052540797740221024,
627
+ 0.11740604028105736,
628
+ 0.11703975558280955,
629
+ 0.16729306846857078,
630
+ 1.0
631
+ ],
632
+ "std": [
633
+ 0.030533093959093094,
634
+ 0.0231416504830122,
635
+ 0.020642085000872612,
636
+ 0.04156165570020676,
637
+ 0.04643021523952484,
638
+ 0.07697845250368118,
639
+ 0.36111101508140564
640
+ ]
641
+ },
642
+ "num_trajectories": 43264,
643
+ "num_transitions": 6015535,
644
+ "proprio": {
645
+ "max": [
646
+ 0.0,
647
+ 0.0,
648
+ 0.0,
649
+ 0.0,
650
+ 0.0,
651
+ 0.0,
652
+ 0.0
653
+ ],
654
+ "mean": [
655
+ 0.0,
656
+ 0.0,
657
+ 0.0,
658
+ 0.0,
659
+ 0.0,
660
+ 0.0,
661
+ 0.0
662
+ ],
663
+ "min": [
664
+ 0.0,
665
+ 0.0,
666
+ 0.0,
667
+ 0.0,
668
+ 0.0,
669
+ 0.0,
670
+ 0.0
671
+ ],
672
+ "q01": [
673
+ 0.0,
674
+ 0.0,
675
+ 0.0,
676
+ 0.0,
677
+ 0.0,
678
+ 0.0,
679
+ 0.0
680
+ ],
681
+ "q99": [
682
+ 0.0,
683
+ 0.0,
684
+ 0.0,
685
+ 0.0,
686
+ 0.0,
687
+ 0.0,
688
+ 0.0
689
+ ],
690
+ "std": [
691
+ 0.0,
692
+ 0.0,
693
+ 0.0,
694
+ 0.0,
695
+ 0.0,
696
+ 0.0,
697
+ 0.0
698
+ ]
699
+ }
700
+ },
701
+ "berkeley_autolab_ur5/0.1.0": {
702
+ "action": {
703
+ "mask": [
704
+ true,
705
+ true,
706
+ true,
707
+ true,
708
+ true,
709
+ true,
710
+ false
711
+ ],
712
+ "max": [
713
+ 0.019999999552965164,
714
+ 0.019999999552965164,
715
+ 0.019999999552965164,
716
+ 0.06666667014360428,
717
+ 0.06666667014360428,
718
+ 0.06666667014360428,
719
+ 1.0
720
+ ],
721
+ "mean": [
722
+ 0.0005683613708242774,
723
+ 0.0012176961172372103,
724
+ -0.0005296385497786105,
725
+ 0.00021029777417425066,
726
+ 6.069485243642703e-05,
727
+ 0.0012049867073073983,
728
+ 0.6298308372497559
729
+ ],
730
+ "min": [
731
+ -0.019999999552965164,
732
+ -0.019999999552965164,
733
+ -0.019999999552965164,
734
+ -0.06666667014360428,
735
+ -0.06666667014360428,
736
+ -0.06666667014360428,
737
+ 0.0
738
+ ],
739
+ "q01": [
740
+ -0.019999999552965164,
741
+ -0.019999999552965164,
742
+ -0.019999999552965164,
743
+ -0.02628571353852749,
744
+ -0.06666667014360428,
745
+ -0.03847619146108627,
746
+ 0.0
747
+ ],
748
+ "q99": [
749
+ 0.019999999552965164,
750
+ 0.019999999552965164,
751
+ 0.019999999552965164,
752
+ 0.031809523701667786,
753
+ 0.06666667014360428,
754
+ 0.036571428179740906,
755
+ 1.0
756
+ ],
757
+ "std": [
758
+ 0.011533073149621487,
759
+ 0.007990497164428234,
760
+ 0.009577799588441849,
761
+ 0.009432999417185783,
762
+ 0.016427574679255486,
763
+ 0.011054049246013165,
764
+ 0.482679545879364
765
+ ]
766
+ },
767
+ "num_trajectories": 1000,
768
+ "num_transitions": 97939,
769
+ "proprio": {
770
+ "max": [
771
+ 0.0,
772
+ 0.0,
773
+ 0.0,
774
+ 0.0,
775
+ 0.0,
776
+ 0.0,
777
+ 0.0
778
+ ],
779
+ "mean": [
780
+ 0.0,
781
+ 0.0,
782
+ 0.0,
783
+ 0.0,
784
+ 0.0,
785
+ 0.0,
786
+ 0.0
787
+ ],
788
+ "min": [
789
+ 0.0,
790
+ 0.0,
791
+ 0.0,
792
+ 0.0,
793
+ 0.0,
794
+ 0.0,
795
+ 0.0
796
+ ],
797
+ "q01": [
798
+ 0.0,
799
+ 0.0,
800
+ 0.0,
801
+ 0.0,
802
+ 0.0,
803
+ 0.0,
804
+ 0.0
805
+ ],
806
+ "q99": [
807
+ 0.0,
808
+ 0.0,
809
+ 0.0,
810
+ 0.0,
811
+ 0.0,
812
+ 0.0,
813
+ 0.0
814
+ ],
815
+ "std": [
816
+ 0.0,
817
+ 0.0,
818
+ 0.0,
819
+ 0.0,
820
+ 0.0,
821
+ 0.0,
822
+ 0.0
823
+ ]
824
+ }
825
+ },
826
+ "berkeley_cable_routing/0.1.0": {
827
+ "action": {
828
+ "mask": [
829
+ true,
830
+ true,
831
+ true,
832
+ true,
833
+ true,
834
+ true,
835
+ false
836
+ ],
837
+ "max": [
838
+ 0.9633283019065857,
839
+ 1.0,
840
+ 1.0,
841
+ 0.0,
842
+ 0.0,
843
+ 1.0,
844
+ 0.0
845
+ ],
846
+ "mean": [
847
+ -0.07139858603477478,
848
+ 0.023608991876244545,
849
+ 0.10241956263780594,
850
+ 0.0,
851
+ 0.0,
852
+ 0.04967105761170387,
853
+ 0.0
854
+ ],
855
+ "min": [
856
+ -0.9809081554412842,
857
+ -0.9554349184036255,
858
+ -0.9994775056838989,
859
+ 0.0,
860
+ 0.0,
861
+ -1.0,
862
+ 0.0
863
+ ],
864
+ "q01": [
865
+ -0.5534318816661835,
866
+ -0.4797285574674606,
867
+ -0.5314934802055359,
868
+ 0.0,
869
+ 0.0,
870
+ -0.8855219376087189,
871
+ 0.0
872
+ ],
873
+ "q99": [
874
+ 0.42652835428714786,
875
+ 0.5000944086909298,
876
+ 0.639823433756829,
877
+ 0.0,
878
+ 0.0,
879
+ 0.984243879914284,
880
+ 0.0
881
+ ],
882
+ "std": [
883
+ 0.18155010044574738,
884
+ 0.18109896779060364,
885
+ 0.21220752596855164,
886
+ 0.0,
887
+ 0.0,
888
+ 0.3475516438484192,
889
+ 0.0
890
+ ]
891
+ },
892
+ "num_trajectories": 1647,
893
+ "num_transitions": 42328,
894
+ "proprio": {
895
+ "max": [
896
+ 0.0,
897
+ 0.0,
898
+ 0.0,
899
+ 0.0,
900
+ 0.0,
901
+ 0.0,
902
+ 0.0
903
+ ],
904
+ "mean": [
905
+ 0.0,
906
+ 0.0,
907
+ 0.0,
908
+ 0.0,
909
+ 0.0,
910
+ 0.0,
911
+ 0.0
912
+ ],
913
+ "min": [
914
+ 0.0,
915
+ 0.0,
916
+ 0.0,
917
+ 0.0,
918
+ 0.0,
919
+ 0.0,
920
+ 0.0
921
+ ],
922
+ "q01": [
923
+ 0.0,
924
+ 0.0,
925
+ 0.0,
926
+ 0.0,
927
+ 0.0,
928
+ 0.0,
929
+ 0.0
930
+ ],
931
+ "q99": [
932
+ 0.0,
933
+ 0.0,
934
+ 0.0,
935
+ 0.0,
936
+ 0.0,
937
+ 0.0,
938
+ 0.0
939
+ ],
940
+ "std": [
941
+ 0.0,
942
+ 0.0,
943
+ 0.0,
944
+ 0.0,
945
+ 0.0,
946
+ 0.0,
947
+ 0.0
948
+ ]
949
+ }
950
+ },
951
+ "berkeley_fanuc_manipulation/0.1.0": {
952
+ "action": {
953
+ "mask": [
954
+ true,
955
+ true,
956
+ true,
957
+ true,
958
+ true,
959
+ true,
960
+ false
961
+ ],
962
+ "max": [
963
+ 0.009999999776482582,
964
+ 0.009999999776482582,
965
+ 0.009999999776482582,
966
+ 0.03490658476948738,
967
+ 0.03490658476948738,
968
+ 0.03490658476948738,
969
+ 1.0
970
+ ],
971
+ "mean": [
972
+ 0.0007744057802483439,
973
+ -0.00031240080716088414,
974
+ -0.0015001941937953234,
975
+ -0.0007515158504247665,
976
+ -0.00015832878125365824,
977
+ 0.00014327642566058785,
978
+ 0.699295699596405
979
+ ],
980
+ "min": [
981
+ -0.009999999776482582,
982
+ -0.009999999776482582,
983
+ -0.009999999776482582,
984
+ -0.03490658476948738,
985
+ -0.03490658476948738,
986
+ -0.03490658476948738,
987
+ 0.0
988
+ ],
989
+ "q01": [
990
+ -0.009999999776482582,
991
+ -0.009999999776482582,
992
+ -0.009999999776482582,
993
+ -0.03490658476948738,
994
+ 0.0,
995
+ -0.03490658476948738,
996
+ 0.0
997
+ ],
998
+ "q99": [
999
+ 0.009999999776482582,
1000
+ 0.009999999776482582,
1001
+ 0.009999999776482582,
1002
+ 0.03490658476948738,
1003
+ 0.0,
1004
+ 0.03490658476948738,
1005
+ 1.0
1006
+ ],
1007
+ "std": [
1008
+ 0.0034070133697241545,
1009
+ 0.00499219074845314,
1010
+ 0.005344326142221689,
1011
+ 0.007599010597914457,
1012
+ 0.004081932827830315,
1013
+ 0.008568963967263699,
1014
+ 0.45868709683418274
1015
+ ]
1016
+ },
1017
+ "num_trajectories": 415,
1018
+ "num_transitions": 62613,
1019
+ "proprio": {
1020
+ "max": [
1021
+ 0.0,
1022
+ 0.0,
1023
+ 0.0,
1024
+ 0.0,
1025
+ 0.0,
1026
+ 0.0,
1027
+ 0.0
1028
+ ],
1029
+ "mean": [
1030
+ 0.0,
1031
+ 0.0,
1032
+ 0.0,
1033
+ 0.0,
1034
+ 0.0,
1035
+ 0.0,
1036
+ 0.0
1037
+ ],
1038
+ "min": [
1039
+ 0.0,
1040
+ 0.0,
1041
+ 0.0,
1042
+ 0.0,
1043
+ 0.0,
1044
+ 0.0,
1045
+ 0.0
1046
+ ],
1047
+ "q01": [
1048
+ 0.0,
1049
+ 0.0,
1050
+ 0.0,
1051
+ 0.0,
1052
+ 0.0,
1053
+ 0.0,
1054
+ 0.0
1055
+ ],
1056
+ "q99": [
1057
+ 0.0,
1058
+ 0.0,
1059
+ 0.0,
1060
+ 0.0,
1061
+ 0.0,
1062
+ 0.0,
1063
+ 0.0
1064
+ ],
1065
+ "std": [
1066
+ 0.0,
1067
+ 0.0,
1068
+ 0.0,
1069
+ 0.0,
1070
+ 0.0,
1071
+ 0.0,
1072
+ 0.0
1073
+ ]
1074
+ }
1075
+ },
1076
+ "bridge_orig/1.0.0": {
1077
+ "action": {
1078
+ "mask": [
1079
+ true,
1080
+ true,
1081
+ true,
1082
+ true,
1083
+ true,
1084
+ true,
1085
+ false
1086
+ ],
1087
+ "max": [
1088
+ 0.41691166162490845,
1089
+ 0.25864794850349426,
1090
+ 0.21218234300613403,
1091
+ 3.122201919555664,
1092
+ 1.8618112802505493,
1093
+ 6.280478477478027,
1094
+ 1.0
1095
+ ],
1096
+ "mean": [
1097
+ 0.00023341714404523373,
1098
+ 0.00013004327774979174,
1099
+ -0.00012762591359205544,
1100
+ -0.0001556579809403047,
1101
+ -0.00040393328526988626,
1102
+ 0.00023558337124995887,
1103
+ 0.5764582753181458
1104
+ ],
1105
+ "min": [
1106
+ -0.4007510244846344,
1107
+ -0.13874775171279907,
1108
+ -0.22553899884223938,
1109
+ -3.2010786533355713,
1110
+ -1.8618112802505493,
1111
+ -6.279075622558594,
1112
+ 0.0
1113
+ ],
1114
+ "q01": [
1115
+ -0.02872725307941437,
1116
+ -0.04170349963009357,
1117
+ -0.026093858778476715,
1118
+ -0.08092105075716972,
1119
+ -0.09288699507713317,
1120
+ -0.20718276381492615,
1121
+ 0.0
1122
+ ],
1123
+ "q99": [
1124
+ 0.028309678435325586,
1125
+ 0.040855254605412394,
1126
+ 0.040161586627364146,
1127
+ 0.08192047759890528,
1128
+ 0.07792850524187081,
1129
+ 0.20382574498653397,
1130
+ 1.0
1131
+ ],
1132
+ "std": [
1133
+ 0.009765734896063805,
1134
+ 0.013689505867660046,
1135
+ 0.012667152099311352,
1136
+ 0.028534479439258575,
1137
+ 0.03063790127635002,
1138
+ 0.07691770792007446,
1139
+ 0.4973658621311188
1140
+ ]
1141
+ },
1142
+ "num_trajectories": 60064,
1143
+ "num_transitions": 2135463,
1144
+ "proprio": {
1145
+ "max": [
1146
+ 0.0,
1147
+ 0.0,
1148
+ 0.0,
1149
+ 0.0,
1150
+ 0.0,
1151
+ 0.0,
1152
+ 0.0
1153
+ ],
1154
+ "mean": [
1155
+ 0.0,
1156
+ 0.0,
1157
+ 0.0,
1158
+ 0.0,
1159
+ 0.0,
1160
+ 0.0,
1161
+ 0.0
1162
+ ],
1163
+ "min": [
1164
+ 0.0,
1165
+ 0.0,
1166
+ 0.0,
1167
+ 0.0,
1168
+ 0.0,
1169
+ 0.0,
1170
+ 0.0
1171
+ ],
1172
+ "q01": [
1173
+ 0.0,
1174
+ 0.0,
1175
+ 0.0,
1176
+ 0.0,
1177
+ 0.0,
1178
+ 0.0,
1179
+ 0.0
1180
+ ],
1181
+ "q99": [
1182
+ 0.0,
1183
+ 0.0,
1184
+ 0.0,
1185
+ 0.0,
1186
+ 0.0,
1187
+ 0.0,
1188
+ 0.0
1189
+ ],
1190
+ "std": [
1191
+ 0.0,
1192
+ 0.0,
1193
+ 0.0,
1194
+ 0.0,
1195
+ 0.0,
1196
+ 0.0,
1197
+ 0.0
1198
+ ]
1199
+ }
1200
+ },
1201
+ "cmu_stretch/0.1.0": {
1202
+ "action": {
1203
+ "mask": [
1204
+ true,
1205
+ true,
1206
+ true,
1207
+ true,
1208
+ true,
1209
+ true,
1210
+ false
1211
+ ],
1212
+ "max": [
1213
+ 0.02338407188653946,
1214
+ 0.0,
1215
+ 0.023404927924275398,
1216
+ 0.0,
1217
+ 0.0,
1218
+ 0.0,
1219
+ 1.0
1220
+ ],
1221
+ "mean": [
1222
+ 0.0003630445571616292,
1223
+ 0.0,
1224
+ 0.0016466928645968437,
1225
+ 0.0,
1226
+ 0.0,
1227
+ 0.0,
1228
+ 0.3987048268318176
1229
+ ],
1230
+ "min": [
1231
+ -0.019353797659277916,
1232
+ 0.0,
1233
+ -0.02019215188920498,
1234
+ 0.0,
1235
+ 0.0,
1236
+ 0.0,
1237
+ 0.0
1238
+ ],
1239
+ "q01": [
1240
+ -0.011175686959177256,
1241
+ 0.0,
1242
+ -0.0032206363626755773,
1243
+ 0.0,
1244
+ 0.0,
1245
+ 0.0,
1246
+ 0.0
1247
+ ],
1248
+ "q99": [
1249
+ 0.014501785952597848,
1250
+ 0.0,
1251
+ 0.015056106168776728,
1252
+ 0.0,
1253
+ 0.0,
1254
+ 0.0,
1255
+ 1.0
1256
+ ],
1257
+ "std": [
1258
+ 0.004081855062395334,
1259
+ 0.0,
1260
+ 0.003774340031668544,
1261
+ 0.0,
1262
+ 0.0,
1263
+ 0.0,
1264
+ 0.489638090133667
1265
+ ]
1266
+ },
1267
+ "num_trajectories": 135,
1268
+ "num_transitions": 25016,
1269
+ "proprio": {
1270
+ "max": [
1271
+ 0.0,
1272
+ 0.0,
1273
+ 0.0,
1274
+ 0.0,
1275
+ 0.0,
1276
+ 0.0,
1277
+ 0.0
1278
+ ],
1279
+ "mean": [
1280
+ 0.0,
1281
+ 0.0,
1282
+ 0.0,
1283
+ 0.0,
1284
+ 0.0,
1285
+ 0.0,
1286
+ 0.0
1287
+ ],
1288
+ "min": [
1289
+ 0.0,
1290
+ 0.0,
1291
+ 0.0,
1292
+ 0.0,
1293
+ 0.0,
1294
+ 0.0,
1295
+ 0.0
1296
+ ],
1297
+ "q01": [
1298
+ 0.0,
1299
+ 0.0,
1300
+ 0.0,
1301
+ 0.0,
1302
+ 0.0,
1303
+ 0.0,
1304
+ 0.0
1305
+ ],
1306
+ "q99": [
1307
+ 0.0,
1308
+ 0.0,
1309
+ 0.0,
1310
+ 0.0,
1311
+ 0.0,
1312
+ 0.0,
1313
+ 0.0
1314
+ ],
1315
+ "std": [
1316
+ 0.0,
1317
+ 0.0,
1318
+ 0.0,
1319
+ 0.0,
1320
+ 0.0,
1321
+ 0.0,
1322
+ 0.0
1323
+ ]
1324
+ }
1325
+ },
1326
+ "dlr_edan_shared_control_converted_externally_to_rlds/0.1.0": {
1327
+ "action": {
1328
+ "mask": [
1329
+ true,
1330
+ true,
1331
+ true,
1332
+ true,
1333
+ true,
1334
+ true,
1335
+ false
1336
+ ],
1337
+ "max": [
1338
+ 0.18991442024707794,
1339
+ 0.0739002525806427,
1340
+ 0.18064819276332855,
1341
+ 0.0866486132144928,
1342
+ 0.13464981317520142,
1343
+ 0.16910280287265778,
1344
+ 1.0
1345
+ ],
1346
+ "mean": [
1347
+ 0.0066478196531534195,
1348
+ -0.0007657355745323002,
1349
+ 0.006522845011204481,
1350
+ 0.0011679773451760411,
1351
+ -0.006395624950528145,
1352
+ -0.011903021484613419,
1353
+ 0.6985887289047241
1354
+ ],
1355
+ "min": [
1356
+ -0.10054297000169754,
1357
+ -0.08427435159683228,
1358
+ -0.13533438742160797,
1359
+ -0.17556548118591309,
1360
+ -0.18485672771930695,
1361
+ -0.2680685818195343,
1362
+ 0.0
1363
+ ],
1364
+ "q01": [
1365
+ -0.02987122368067503,
1366
+ -0.06013262912631035,
1367
+ -0.08286409199237824,
1368
+ -0.05924444157630205,
1369
+ -0.15986866518855095,
1370
+ -0.15636983573436739,
1371
+ 0.0
1372
+ ],
1373
+ "q99": [
1374
+ 0.08832092039287087,
1375
+ 0.042126184627413736,
1376
+ 0.11311905644834042,
1377
+ 0.0643695573508739,
1378
+ 0.03941855944693088,
1379
+ 0.156646853685379,
1380
+ 1.0
1381
+ ],
1382
+ "std": [
1383
+ 0.021393585950136185,
1384
+ 0.018142299726605415,
1385
+ 0.03374377265572548,
1386
+ 0.01743541844189167,
1387
+ 0.03394372761249542,
1388
+ 0.04641878604888916,
1389
+ 0.45885783433914185
1390
+ ]
1391
+ },
1392
+ "num_trajectories": 104,
1393
+ "num_transitions": 8928,
1394
+ "proprio": {
1395
+ "max": [
1396
+ 0.0,
1397
+ 0.0,
1398
+ 0.0,
1399
+ 0.0,
1400
+ 0.0,
1401
+ 0.0,
1402
+ 0.0
1403
+ ],
1404
+ "mean": [
1405
+ 0.0,
1406
+ 0.0,
1407
+ 0.0,
1408
+ 0.0,
1409
+ 0.0,
1410
+ 0.0,
1411
+ 0.0
1412
+ ],
1413
+ "min": [
1414
+ 0.0,
1415
+ 0.0,
1416
+ 0.0,
1417
+ 0.0,
1418
+ 0.0,
1419
+ 0.0,
1420
+ 0.0
1421
+ ],
1422
+ "q01": [
1423
+ 0.0,
1424
+ 0.0,
1425
+ 0.0,
1426
+ 0.0,
1427
+ 0.0,
1428
+ 0.0,
1429
+ 0.0
1430
+ ],
1431
+ "q99": [
1432
+ 0.0,
1433
+ 0.0,
1434
+ 0.0,
1435
+ 0.0,
1436
+ 0.0,
1437
+ 0.0,
1438
+ 0.0
1439
+ ],
1440
+ "std": [
1441
+ 0.0,
1442
+ 0.0,
1443
+ 0.0,
1444
+ 0.0,
1445
+ 0.0,
1446
+ 0.0,
1447
+ 0.0
1448
+ ]
1449
+ }
1450
+ },
1451
+ "dobbe/0.0.1": {
1452
+ "action": {
1453
+ "mask": [
1454
+ true,
1455
+ true,
1456
+ true,
1457
+ true,
1458
+ true,
1459
+ true,
1460
+ false
1461
+ ],
1462
+ "max": [
1463
+ 38.590423583984375,
1464
+ 17.932697296142578,
1465
+ 4.843764305114746,
1466
+ 1.4372116327285767,
1467
+ 0.4340403974056244,
1468
+ 1.2057193517684937,
1469
+ 0.9998947381973267
1470
+ ],
1471
+ "mean": [
1472
+ -0.00011206958151888102,
1473
+ 0.0011229681549593806,
1474
+ -0.00010193959315074608,
1475
+ -7.37128357286565e-05,
1476
+ -0.0006753374473191798,
1477
+ -5.664441778208129e-05,
1478
+ 0.6318688988685608
1479
+ ],
1480
+ "min": [
1481
+ -5.700923442840576,
1482
+ -21.605947494506836,
1483
+ -123.72489929199219,
1484
+ -1.7229845523834229,
1485
+ -0.4998578727245331,
1486
+ -0.8867913484573364,
1487
+ 1.4196479014572105e-06
1488
+ ],
1489
+ "q01": [
1490
+ -0.01119564864784479,
1491
+ -0.014266146533191203,
1492
+ -0.0071747214533388615,
1493
+ -0.009444301575422287,
1494
+ -0.03990109823644161,
1495
+ -0.017422311007976532,
1496
+ 4.003279136668425e-05
1497
+ ],
1498
+ "q99": [
1499
+ 0.01015154086053368,
1500
+ 0.017181577533483497,
1501
+ 0.007216989761218411,
1502
+ 0.010380979906767595,
1503
+ 0.03556173853576176,
1504
+ 0.018032474815845446,
1505
+ 0.9982578039169312
1506
+ ],
1507
+ "std": [
1508
+ 0.042660679668188095,
1509
+ 0.04428431764245033,
1510
+ 0.12224890291690826,
1511
+ 0.005388470832258463,
1512
+ 0.011246936395764351,
1513
+ 0.006288259290158749,
1514
+ 0.3973240256309509
1515
+ ]
1516
+ },
1517
+ "num_trajectories": 5208,
1518
+ "num_transitions": 1139911,
1519
+ "proprio": {
1520
+ "max": [
1521
+ 0.0,
1522
+ 0.0,
1523
+ 0.0,
1524
+ 0.0,
1525
+ 0.0,
1526
+ 0.0,
1527
+ 0.0
1528
+ ],
1529
+ "mean": [
1530
+ 0.0,
1531
+ 0.0,
1532
+ 0.0,
1533
+ 0.0,
1534
+ 0.0,
1535
+ 0.0,
1536
+ 0.0
1537
+ ],
1538
+ "min": [
1539
+ 0.0,
1540
+ 0.0,
1541
+ 0.0,
1542
+ 0.0,
1543
+ 0.0,
1544
+ 0.0,
1545
+ 0.0
1546
+ ],
1547
+ "q01": [
1548
+ 0.0,
1549
+ 0.0,
1550
+ 0.0,
1551
+ 0.0,
1552
+ 0.0,
1553
+ 0.0,
1554
+ 0.0
1555
+ ],
1556
+ "q99": [
1557
+ 0.0,
1558
+ 0.0,
1559
+ 0.0,
1560
+ 0.0,
1561
+ 0.0,
1562
+ 0.0,
1563
+ 0.0
1564
+ ],
1565
+ "std": [
1566
+ 0.0,
1567
+ 0.0,
1568
+ 0.0,
1569
+ 0.0,
1570
+ 0.0,
1571
+ 0.0,
1572
+ 0.0
1573
+ ]
1574
+ }
1575
+ },
1576
+ "droid/1.0.0": {
1577
+ "action": {
1578
+ "mask": [
1579
+ true,
1580
+ true,
1581
+ true,
1582
+ true,
1583
+ true,
1584
+ true,
1585
+ false
1586
+ ],
1587
+ "max": [
1588
+ 0.9999998211860657,
1589
+ 0.999991774559021,
1590
+ 0.9999973177909851,
1591
+ 0.9999874830245972,
1592
+ 0.9999954104423523,
1593
+ 0.9999998807907104,
1594
+ 1.0
1595
+ ],
1596
+ "mean": [
1597
+ 0.027425529435276985,
1598
+ -0.0026820411439985037,
1599
+ 0.01595238223671913,
1600
+ 0.0035501928068697453,
1601
+ -0.030532635748386383,
1602
+ -0.006685464642941952,
1603
+ 0.5860344171524048
1604
+ ],
1605
+ "min": [
1606
+ -0.9999999403953552,
1607
+ -0.9999951124191284,
1608
+ -0.9999960660934448,
1609
+ -0.9999980330467224,
1610
+ -0.9999982118606567,
1611
+ -0.9999998807907104,
1612
+ 0.0
1613
+ ],
1614
+ "q01": [
1615
+ -0.7776297926902771,
1616
+ -0.5803514122962952,
1617
+ -0.5795090794563293,
1618
+ -0.6464047729969025,
1619
+ -0.7041108310222626,
1620
+ -0.8895104378461838,
1621
+ 0.0
1622
+ ],
1623
+ "q99": [
1624
+ 0.7597932070493698,
1625
+ 0.5726242214441299,
1626
+ 0.7351000607013702,
1627
+ 0.6705610305070877,
1628
+ 0.6464948207139969,
1629
+ 0.8897542208433151,
1630
+ 1.0
1631
+ ],
1632
+ "std": [
1633
+ 0.25387412309646606,
1634
+ 0.18426834046840668,
1635
+ 0.22532416880130768,
1636
+ 0.21757009625434875,
1637
+ 0.22572560608386993,
1638
+ 0.2867794930934906,
1639
+ 0.4287726879119873
1640
+ ]
1641
+ },
1642
+ "num_trajectories": 92233,
1643
+ "num_transitions": 27044326,
1644
+ "proprio": {
1645
+ "max": [
1646
+ 0.0,
1647
+ 0.0,
1648
+ 0.0,
1649
+ 0.0,
1650
+ 0.0,
1651
+ 0.0,
1652
+ 0.0
1653
+ ],
1654
+ "mean": [
1655
+ 0.0,
1656
+ 0.0,
1657
+ 0.0,
1658
+ 0.0,
1659
+ 0.0,
1660
+ 0.0,
1661
+ 0.0
1662
+ ],
1663
+ "min": [
1664
+ 0.0,
1665
+ 0.0,
1666
+ 0.0,
1667
+ 0.0,
1668
+ 0.0,
1669
+ 0.0,
1670
+ 0.0
1671
+ ],
1672
+ "q01": [
1673
+ 0.0,
1674
+ 0.0,
1675
+ 0.0,
1676
+ 0.0,
1677
+ 0.0,
1678
+ 0.0,
1679
+ 0.0
1680
+ ],
1681
+ "q99": [
1682
+ 0.0,
1683
+ 0.0,
1684
+ 0.0,
1685
+ 0.0,
1686
+ 0.0,
1687
+ 0.0,
1688
+ 0.0
1689
+ ],
1690
+ "std": [
1691
+ 0.0,
1692
+ 0.0,
1693
+ 0.0,
1694
+ 0.0,
1695
+ 0.0,
1696
+ 0.0,
1697
+ 0.0
1698
+ ]
1699
+ }
1700
+ },
1701
+ "fmb_dataset/1.0.0": {
1702
+ "action": {
1703
+ "mask": [
1704
+ true,
1705
+ true,
1706
+ true,
1707
+ true,
1708
+ true,
1709
+ true,
1710
+ false
1711
+ ],
1712
+ "max": [
1713
+ 1.399999976158142,
1714
+ 1.0,
1715
+ 1.399999976158142,
1716
+ 1.0,
1717
+ 1.0,
1718
+ 1.0,
1719
+ 1.0
1720
+ ],
1721
+ "mean": [
1722
+ 0.05902976542711258,
1723
+ -0.06476633995771408,
1724
+ -0.09787469357252121,
1725
+ 0.004325387068092823,
1726
+ 0.00028963759541511536,
1727
+ -0.04457257315516472,
1728
+ 0.7336440086364746
1729
+ ],
1730
+ "min": [
1731
+ -1.399999976158142,
1732
+ -1.399999976158142,
1733
+ -1.0,
1734
+ -1.0,
1735
+ -1.0,
1736
+ -1.0,
1737
+ 0.0
1738
+ ],
1739
+ "q01": [
1740
+ -0.8257142901420593,
1741
+ -1.399999976158142,
1742
+ -1.0,
1743
+ -1.0,
1744
+ -0.3028571307659149,
1745
+ -1.0,
1746
+ 0.0
1747
+ ],
1748
+ "q99": [
1749
+ 1.0,
1750
+ 0.5257142782211304,
1751
+ 1.0,
1752
+ 1.0,
1753
+ 0.3400000035762787,
1754
+ 1.0,
1755
+ 1.0
1756
+ ],
1757
+ "std": [
1758
+ 0.28809186816215515,
1759
+ 0.2820416986942291,
1760
+ 0.4626740515232086,
1761
+ 0.3266514539718628,
1762
+ 0.10842999070882797,
1763
+ 0.34400978684425354,
1764
+ 0.4435289800167084
1765
+ ]
1766
+ },
1767
+ "num_trajectories": 8612,
1768
+ "num_transitions": 1137459,
1769
+ "proprio": {
1770
+ "max": [
1771
+ 0.0,
1772
+ 0.0,
1773
+ 0.0,
1774
+ 0.0,
1775
+ 0.0,
1776
+ 0.0,
1777
+ 0.0
1778
+ ],
1779
+ "mean": [
1780
+ 0.0,
1781
+ 0.0,
1782
+ 0.0,
1783
+ 0.0,
1784
+ 0.0,
1785
+ 0.0,
1786
+ 0.0
1787
+ ],
1788
+ "min": [
1789
+ 0.0,
1790
+ 0.0,
1791
+ 0.0,
1792
+ 0.0,
1793
+ 0.0,
1794
+ 0.0,
1795
+ 0.0
1796
+ ],
1797
+ "q01": [
1798
+ 0.0,
1799
+ 0.0,
1800
+ 0.0,
1801
+ 0.0,
1802
+ 0.0,
1803
+ 0.0,
1804
+ 0.0
1805
+ ],
1806
+ "q99": [
1807
+ 0.0,
1808
+ 0.0,
1809
+ 0.0,
1810
+ 0.0,
1811
+ 0.0,
1812
+ 0.0,
1813
+ 0.0
1814
+ ],
1815
+ "std": [
1816
+ 0.0,
1817
+ 0.0,
1818
+ 0.0,
1819
+ 0.0,
1820
+ 0.0,
1821
+ 0.0,
1822
+ 0.0
1823
+ ]
1824
+ }
1825
+ },
1826
+ "fractal20220817_data/0.1.0": {
1827
+ "action": {
1828
+ "mask": [
1829
+ true,
1830
+ true,
1831
+ true,
1832
+ true,
1833
+ true,
1834
+ true,
1835
+ false
1836
+ ],
1837
+ "max": [
1838
+ 2.9984593391418457,
1839
+ 22.09052848815918,
1840
+ 2.7507524490356445,
1841
+ 1.570636510848999,
1842
+ 1.5321086645126343,
1843
+ 1.5691522359848022,
1844
+ 1.0
1845
+ ],
1846
+ "mean": [
1847
+ 0.006987507455050945,
1848
+ 0.006265853065997362,
1849
+ -0.012625162489712238,
1850
+ 0.04333285242319107,
1851
+ -0.005756276659667492,
1852
+ 0.0009130403632298112,
1853
+ 0.5354204773902893
1854
+ ],
1855
+ "min": [
1856
+ -2.0204520225524902,
1857
+ -5.497899532318115,
1858
+ -2.031663417816162,
1859
+ -1.569917917251587,
1860
+ -1.569892168045044,
1861
+ -1.570419430732727,
1862
+ 0.0
1863
+ ],
1864
+ "q01": [
1865
+ -0.22453527510166169,
1866
+ -0.14820013284683228,
1867
+ -0.231589707583189,
1868
+ -0.3517994859814644,
1869
+ -0.4193011274933815,
1870
+ -0.43643461108207704,
1871
+ 0.0
1872
+ ],
1873
+ "q99": [
1874
+ 0.17824687153100965,
1875
+ 0.14938379630446405,
1876
+ 0.21842354819178575,
1877
+ 0.5892666035890578,
1878
+ 0.35272657424211445,
1879
+ 0.44796681255102094,
1880
+ 1.0
1881
+ ],
1882
+ "std": [
1883
+ 0.06921109557151794,
1884
+ 0.05970889702439308,
1885
+ 0.0735311210155487,
1886
+ 0.1561058759689331,
1887
+ 0.1316441297531128,
1888
+ 0.14593777060508728,
1889
+ 0.49711623787879944
1890
+ ]
1891
+ },
1892
+ "num_trajectories": 87212,
1893
+ "num_transitions": 3786400,
1894
+ "proprio": {
1895
+ "max": [
1896
+ 0.0,
1897
+ 0.0,
1898
+ 0.0,
1899
+ 0.0,
1900
+ 0.0,
1901
+ 0.0,
1902
+ 0.0
1903
+ ],
1904
+ "mean": [
1905
+ 0.0,
1906
+ 0.0,
1907
+ 0.0,
1908
+ 0.0,
1909
+ 0.0,
1910
+ 0.0,
1911
+ 0.0
1912
+ ],
1913
+ "min": [
1914
+ 0.0,
1915
+ 0.0,
1916
+ 0.0,
1917
+ 0.0,
1918
+ 0.0,
1919
+ 0.0,
1920
+ 0.0
1921
+ ],
1922
+ "q01": [
1923
+ 0.0,
1924
+ 0.0,
1925
+ 0.0,
1926
+ 0.0,
1927
+ 0.0,
1928
+ 0.0,
1929
+ 0.0
1930
+ ],
1931
+ "q99": [
1932
+ 0.0,
1933
+ 0.0,
1934
+ 0.0,
1935
+ 0.0,
1936
+ 0.0,
1937
+ 0.0,
1938
+ 0.0
1939
+ ],
1940
+ "std": [
1941
+ 0.0,
1942
+ 0.0,
1943
+ 0.0,
1944
+ 0.0,
1945
+ 0.0,
1946
+ 0.0,
1947
+ 0.0
1948
+ ]
1949
+ }
1950
+ },
1951
+ "furniture_bench_dataset_converted_externally_to_rlds/0.1.0": {
1952
+ "action": {
1953
+ "mask": [
1954
+ true,
1955
+ true,
1956
+ true,
1957
+ true,
1958
+ true,
1959
+ true,
1960
+ false
1961
+ ],
1962
+ "max": [
1963
+ 0.10000000149011612,
1964
+ 0.10000000149011612,
1965
+ 0.10000000149011612,
1966
+ 0.8651833534240723,
1967
+ 1.0909736156463623,
1968
+ 2.863185405731201,
1969
+ 1.0
1970
+ ],
1971
+ "mean": [
1972
+ 0.0001461071806261316,
1973
+ 0.0010830992832779884,
1974
+ 0.0006224963581189513,
1975
+ -0.0033032014034688473,
1976
+ -0.002688060747459531,
1977
+ 0.018242614343762398,
1978
+ 0.48854944109916687
1979
+ ],
1980
+ "min": [
1981
+ -0.10495579987764359,
1982
+ -0.10939455777406693,
1983
+ -0.10000000149011612,
1984
+ -0.971906840801239,
1985
+ -1.0475432872772217,
1986
+ -3.06000018119812,
1987
+ 0.0
1988
+ ],
1989
+ "q01": [
1990
+ -0.053988199681043625,
1991
+ -0.05049169331789017,
1992
+ -0.032499241530895236,
1993
+ -0.1953887003660202,
1994
+ -0.41674559473991396,
1995
+ -0.8886768388748169,
1996
+ 0.0
1997
+ ],
1998
+ "q99": [
1999
+ 0.05414841488003723,
2000
+ 0.04965164884924884,
2001
+ 0.060055799782276154,
2002
+ 0.18231668293476103,
2003
+ 0.39867786407470646,
2004
+ 0.8772023963928218,
2005
+ 1.0
2006
+ ],
2007
+ "std": [
2008
+ 0.016107233241200447,
2009
+ 0.014891570433974266,
2010
+ 0.014014236629009247,
2011
+ 0.05827433615922928,
2012
+ 0.11417083442211151,
2013
+ 0.33479660749435425,
2014
+ 0.4999157190322876
2015
+ ]
2016
+ },
2017
+ "num_trajectories": 5100,
2018
+ "num_transitions": 3948057,
2019
+ "proprio": {
2020
+ "max": [
2021
+ 0.0,
2022
+ 0.0,
2023
+ 0.0,
2024
+ 0.0,
2025
+ 0.0,
2026
+ 0.0,
2027
+ 0.0
2028
+ ],
2029
+ "mean": [
2030
+ 0.0,
2031
+ 0.0,
2032
+ 0.0,
2033
+ 0.0,
2034
+ 0.0,
2035
+ 0.0,
2036
+ 0.0
2037
+ ],
2038
+ "min": [
2039
+ 0.0,
2040
+ 0.0,
2041
+ 0.0,
2042
+ 0.0,
2043
+ 0.0,
2044
+ 0.0,
2045
+ 0.0
2046
+ ],
2047
+ "q01": [
2048
+ 0.0,
2049
+ 0.0,
2050
+ 0.0,
2051
+ 0.0,
2052
+ 0.0,
2053
+ 0.0,
2054
+ 0.0
2055
+ ],
2056
+ "q99": [
2057
+ 0.0,
2058
+ 0.0,
2059
+ 0.0,
2060
+ 0.0,
2061
+ 0.0,
2062
+ 0.0,
2063
+ 0.0
2064
+ ],
2065
+ "std": [
2066
+ 0.0,
2067
+ 0.0,
2068
+ 0.0,
2069
+ 0.0,
2070
+ 0.0,
2071
+ 0.0,
2072
+ 0.0
2073
+ ]
2074
+ }
2075
+ },
2076
+ "iamlab_cmu_pickup_insert_converted_externally_to_rlds/0.1.0": {
2077
+ "action": {
2078
+ "mask": [
2079
+ true,
2080
+ true,
2081
+ true,
2082
+ true,
2083
+ true,
2084
+ true,
2085
+ false
2086
+ ],
2087
+ "max": [
2088
+ 0.6634981632232666,
2089
+ 0.23428471386432648,
2090
+ 0.4308285415172577,
2091
+ 3.1415927410125732,
2092
+ 0.13647015392780304,
2093
+ 3.141592502593994,
2094
+ 1.0
2095
+ ],
2096
+ "mean": [
2097
+ 0.5274373292922974,
2098
+ 0.028582017868757248,
2099
+ 0.18712472915649414,
2100
+ 1.2339569330215454,
2101
+ 0.03226622939109802,
2102
+ -1.4199472665786743,
2103
+ 0.5550631880760193
2104
+ ],
2105
+ "min": [
2106
+ 0.3071657121181488,
2107
+ -0.29754969477653503,
2108
+ 0.06578229367733002,
2109
+ -3.1415927410125732,
2110
+ -0.04584203287959099,
2111
+ -3.141592502593994,
2112
+ 0.0
2113
+ ],
2114
+ "q01": [
2115
+ 0.3148897051811218,
2116
+ -0.20317550599575043,
2117
+ 0.06785467118024827,
2118
+ -3.140952730178833,
2119
+ -0.029743434861302376,
2120
+ -3.141091251373291,
2121
+ 0.0
2122
+ ],
2123
+ "q99": [
2124
+ 0.6472805738449097,
2125
+ 0.20846802592277527,
2126
+ 0.36855655312538155,
2127
+ 3.1409926891326903,
2128
+ 0.11424950212240226,
2129
+ 3.1410969257354737,
2130
+ 1.0
2131
+ ],
2132
+ "std": [
2133
+ 0.08108346909284592,
2134
+ 0.1116756722331047,
2135
+ 0.07747555524110794,
2136
+ 2.8737244606018066,
2137
+ 0.02774704433977604,
2138
+ 2.7678685188293457,
2139
+ 0.4969509243965149
2140
+ ]
2141
+ },
2142
+ "num_trajectories": 631,
2143
+ "num_transitions": 146241,
2144
+ "proprio": {
2145
+ "max": [
2146
+ 0.0,
2147
+ 0.0,
2148
+ 0.0,
2149
+ 0.0,
2150
+ 0.0,
2151
+ 0.0,
2152
+ 0.0
2153
+ ],
2154
+ "mean": [
2155
+ 0.0,
2156
+ 0.0,
2157
+ 0.0,
2158
+ 0.0,
2159
+ 0.0,
2160
+ 0.0,
2161
+ 0.0
2162
+ ],
2163
+ "min": [
2164
+ 0.0,
2165
+ 0.0,
2166
+ 0.0,
2167
+ 0.0,
2168
+ 0.0,
2169
+ 0.0,
2170
+ 0.0
2171
+ ],
2172
+ "q01": [
2173
+ 0.0,
2174
+ 0.0,
2175
+ 0.0,
2176
+ 0.0,
2177
+ 0.0,
2178
+ 0.0,
2179
+ 0.0
2180
+ ],
2181
+ "q99": [
2182
+ 0.0,
2183
+ 0.0,
2184
+ 0.0,
2185
+ 0.0,
2186
+ 0.0,
2187
+ 0.0,
2188
+ 0.0
2189
+ ],
2190
+ "std": [
2191
+ 0.0,
2192
+ 0.0,
2193
+ 0.0,
2194
+ 0.0,
2195
+ 0.0,
2196
+ 0.0,
2197
+ 0.0
2198
+ ]
2199
+ }
2200
+ },
2201
+ "jaco_play/0.1.0": {
2202
+ "action": {
2203
+ "mask": [
2204
+ true,
2205
+ true,
2206
+ true,
2207
+ true,
2208
+ true,
2209
+ true,
2210
+ false
2211
+ ],
2212
+ "max": [
2213
+ 0.20000000298023224,
2214
+ 0.20000000298023224,
2215
+ 0.20000000298023224,
2216
+ 0.0,
2217
+ 0.0,
2218
+ 0.0,
2219
+ 1.0
2220
+ ],
2221
+ "mean": [
2222
+ 0.0009658387862145901,
2223
+ -0.005800850689411163,
2224
+ -0.003950685728341341,
2225
+ 0.0,
2226
+ 0.0,
2227
+ 0.0,
2228
+ 0.34934908151626587
2229
+ ],
2230
+ "min": [
2231
+ -0.20000000298023224,
2232
+ -0.20000000298023224,
2233
+ -0.20000000298023224,
2234
+ 0.0,
2235
+ 0.0,
2236
+ 0.0,
2237
+ 0.0
2238
+ ],
2239
+ "q01": [
2240
+ -0.20000000298023224,
2241
+ -0.20000000298023224,
2242
+ -0.20000000298023224,
2243
+ 0.0,
2244
+ 0.0,
2245
+ 0.0,
2246
+ 0.0
2247
+ ],
2248
+ "q99": [
2249
+ 0.20000000298023224,
2250
+ 0.20000000298023224,
2251
+ 0.20000000298023224,
2252
+ 0.0,
2253
+ 0.0,
2254
+ 0.0,
2255
+ 1.0
2256
+ ],
2257
+ "std": [
2258
+ 0.12234985828399658,
2259
+ 0.09678783267736435,
2260
+ 0.1115543395280838,
2261
+ 0.0,
2262
+ 0.0,
2263
+ 0.0,
2264
+ 0.47682321071624756
2265
+ ]
2266
+ },
2267
+ "num_trajectories": 1085,
2268
+ "num_transitions": 77965,
2269
+ "proprio": {
2270
+ "max": [
2271
+ 0.0,
2272
+ 0.0,
2273
+ 0.0,
2274
+ 0.0,
2275
+ 0.0,
2276
+ 0.0,
2277
+ 0.0
2278
+ ],
2279
+ "mean": [
2280
+ 0.0,
2281
+ 0.0,
2282
+ 0.0,
2283
+ 0.0,
2284
+ 0.0,
2285
+ 0.0,
2286
+ 0.0
2287
+ ],
2288
+ "min": [
2289
+ 0.0,
2290
+ 0.0,
2291
+ 0.0,
2292
+ 0.0,
2293
+ 0.0,
2294
+ 0.0,
2295
+ 0.0
2296
+ ],
2297
+ "q01": [
2298
+ 0.0,
2299
+ 0.0,
2300
+ 0.0,
2301
+ 0.0,
2302
+ 0.0,
2303
+ 0.0,
2304
+ 0.0
2305
+ ],
2306
+ "q99": [
2307
+ 0.0,
2308
+ 0.0,
2309
+ 0.0,
2310
+ 0.0,
2311
+ 0.0,
2312
+ 0.0,
2313
+ 0.0
2314
+ ],
2315
+ "std": [
2316
+ 0.0,
2317
+ 0.0,
2318
+ 0.0,
2319
+ 0.0,
2320
+ 0.0,
2321
+ 0.0,
2322
+ 0.0
2323
+ ]
2324
+ }
2325
+ },
2326
+ "kuka/0.1.0": {
2327
+ "action": {
2328
+ "mask": [
2329
+ true,
2330
+ true,
2331
+ true,
2332
+ true,
2333
+ true,
2334
+ true,
2335
+ false
2336
+ ],
2337
+ "max": [
2338
+ 0.1697135865688324,
2339
+ 0.2777623236179352,
2340
+ 0.43710532784461975,
2341
+ 0.0,
2342
+ 0.0,
2343
+ 1.9684287309646606,
2344
+ 1.0
2345
+ ],
2346
+ "mean": [
2347
+ -0.00046687963185831904,
2348
+ 0.00040137648466043174,
2349
+ -0.0012807906605303288,
2350
+ 0.0,
2351
+ 0.0,
2352
+ -0.037225183099508286,
2353
+ 0.4131543040275574
2354
+ ],
2355
+ "min": [
2356
+ -0.159867063164711,
2357
+ -0.2892282009124756,
2358
+ -0.2795473635196686,
2359
+ 0.0,
2360
+ 0.0,
2361
+ -1.9875637292861938,
2362
+ 0.0
2363
+ ],
2364
+ "q01": [
2365
+ -0.06619441494345665,
2366
+ -0.08713878810405731,
2367
+ -0.15083016991615295,
2368
+ 0.0,
2369
+ 0.0,
2370
+ -0.5415697038173676,
2371
+ 0.0
2372
+ ],
2373
+ "q99": [
2374
+ 0.06601839080452929,
2375
+ 0.08732476785779003,
2376
+ 0.18168179214000715,
2377
+ 0.0,
2378
+ 0.0,
2379
+ 0.2923380345106127,
2380
+ 1.0
2381
+ ],
2382
+ "std": [
2383
+ 0.020832739770412445,
2384
+ 0.029158642515540123,
2385
+ 0.0642285868525505,
2386
+ 0.0,
2387
+ 0.0,
2388
+ 0.14224639534950256,
2389
+ 0.4908643662929535
2390
+ ]
2391
+ },
2392
+ "num_trajectories": 209880,
2393
+ "num_transitions": 2455879,
2394
+ "proprio": {
2395
+ "max": [
2396
+ 0.0,
2397
+ 0.0,
2398
+ 0.0,
2399
+ 0.0,
2400
+ 0.0,
2401
+ 0.0,
2402
+ 0.0
2403
+ ],
2404
+ "mean": [
2405
+ 0.0,
2406
+ 0.0,
2407
+ 0.0,
2408
+ 0.0,
2409
+ 0.0,
2410
+ 0.0,
2411
+ 0.0
2412
+ ],
2413
+ "min": [
2414
+ 0.0,
2415
+ 0.0,
2416
+ 0.0,
2417
+ 0.0,
2418
+ 0.0,
2419
+ 0.0,
2420
+ 0.0
2421
+ ],
2422
+ "q01": [
2423
+ 0.0,
2424
+ 0.0,
2425
+ 0.0,
2426
+ 0.0,
2427
+ 0.0,
2428
+ 0.0,
2429
+ 0.0
2430
+ ],
2431
+ "q99": [
2432
+ 0.0,
2433
+ 0.0,
2434
+ 0.0,
2435
+ 0.0,
2436
+ 0.0,
2437
+ 0.0,
2438
+ 0.0
2439
+ ],
2440
+ "std": [
2441
+ 0.0,
2442
+ 0.0,
2443
+ 0.0,
2444
+ 0.0,
2445
+ 0.0,
2446
+ 0.0,
2447
+ 0.0
2448
+ ]
2449
+ }
2450
+ },
2451
+ "language_table/0.1.0": {
2452
+ "action": {
2453
+ "mask": [
2454
+ true,
2455
+ true,
2456
+ true,
2457
+ true,
2458
+ true,
2459
+ true,
2460
+ false
2461
+ ],
2462
+ "max": [
2463
+ 0.23357294499874115,
2464
+ 0.24496802687644958,
2465
+ 0.0,
2466
+ 0.0,
2467
+ 0.0,
2468
+ 0.0,
2469
+ 1.0
2470
+ ],
2471
+ "mean": [
2472
+ 0.00014891766477376223,
2473
+ -0.0005636657006107271,
2474
+ 0.0,
2475
+ 0.0,
2476
+ 0.0,
2477
+ 0.0,
2478
+ 1.0
2479
+ ],
2480
+ "min": [
2481
+ -0.21989956498146057,
2482
+ -0.23736150562763214,
2483
+ 0.0,
2484
+ 0.0,
2485
+ 0.0,
2486
+ 0.0,
2487
+ 1.0
2488
+ ],
2489
+ "q01": [
2490
+ -0.08179590478539467,
2491
+ -0.11795833334326744,
2492
+ 0.0,
2493
+ 0.0,
2494
+ 0.0,
2495
+ 0.0,
2496
+ 1.0
2497
+ ],
2498
+ "q99": [
2499
+ 0.08822273463010788,
2500
+ 0.1191693339496851,
2501
+ 0.0,
2502
+ 0.0,
2503
+ 0.0,
2504
+ 0.0,
2505
+ 1.0
2506
+ ],
2507
+ "std": [
2508
+ 0.030162859708070755,
2509
+ 0.04230763390660286,
2510
+ 0.0,
2511
+ 0.0,
2512
+ 0.0,
2513
+ 0.0,
2514
+ 0.0
2515
+ ]
2516
+ },
2517
+ "num_trajectories": 442226,
2518
+ "num_transitions": 7045476,
2519
+ "proprio": {
2520
+ "max": [
2521
+ 0.0,
2522
+ 0.0,
2523
+ 0.0,
2524
+ 0.0,
2525
+ 0.0,
2526
+ 0.0,
2527
+ 0.0
2528
+ ],
2529
+ "mean": [
2530
+ 0.0,
2531
+ 0.0,
2532
+ 0.0,
2533
+ 0.0,
2534
+ 0.0,
2535
+ 0.0,
2536
+ 0.0
2537
+ ],
2538
+ "min": [
2539
+ 0.0,
2540
+ 0.0,
2541
+ 0.0,
2542
+ 0.0,
2543
+ 0.0,
2544
+ 0.0,
2545
+ 0.0
2546
+ ],
2547
+ "q01": [
2548
+ 0.0,
2549
+ 0.0,
2550
+ 0.0,
2551
+ 0.0,
2552
+ 0.0,
2553
+ 0.0,
2554
+ 0.0
2555
+ ],
2556
+ "q99": [
2557
+ 0.0,
2558
+ 0.0,
2559
+ 0.0,
2560
+ 0.0,
2561
+ 0.0,
2562
+ 0.0,
2563
+ 0.0
2564
+ ],
2565
+ "std": [
2566
+ 0.0,
2567
+ 0.0,
2568
+ 0.0,
2569
+ 0.0,
2570
+ 0.0,
2571
+ 0.0,
2572
+ 0.0
2573
+ ]
2574
+ }
2575
+ },
2576
+ "libero_spatial_no_noops/1.0.0": {
2577
+ "action": {
2578
+ "mask": [
2579
+ true,
2580
+ true,
2581
+ true,
2582
+ true,
2583
+ true,
2584
+ true,
2585
+ false
2586
+ ],
2587
+ "max": [
2588
+ 0.9375,
2589
+ 0.9375,
2590
+ 0.9375,
2591
+ 0.1971428543329239,
2592
+ 0.33642858266830444,
2593
+ 0.375,
2594
+ 1.0
2595
+ ],
2596
+ "mean": [
2597
+ 0.1531248390674591,
2598
+ 0.13707281649112701,
2599
+ -0.1552678644657135,
2600
+ -0.005176451988518238,
2601
+ -0.01120878104120493,
2602
+ -0.020194314420223236,
2603
+ 0.4578818082809448
2604
+ ],
2605
+ "min": [
2606
+ -0.9375,
2607
+ -0.9375,
2608
+ -0.9375,
2609
+ -0.1875,
2610
+ -0.3675000071525574,
2611
+ -0.36000001430511475,
2612
+ 0.0
2613
+ ],
2614
+ "q01": [
2615
+ -0.7454732114076613,
2616
+ -0.6616071462631226,
2617
+ -0.9375,
2618
+ -0.1071428582072258,
2619
+ -0.20678570866584778,
2620
+ -0.1842857152223587,
2621
+ 0.0
2622
+ ],
2623
+ "q99": [
2624
+ 0.9375,
2625
+ 0.8758928775787354,
2626
+ 0.9321428537368774,
2627
+ 0.1039285734295845,
2628
+ 0.17678570747375488,
2629
+ 0.14571428298950195,
2630
+ 1.0
2631
+ ],
2632
+ "std": [
2633
+ 0.4127269387245178,
2634
+ 0.34724509716033936,
2635
+ 0.5086917877197266,
2636
+ 0.03726619482040405,
2637
+ 0.07244456559419632,
2638
+ 0.05762358754873276,
2639
+ 0.49828025698661804
2640
+ ]
2641
+ },
2642
+ "num_trajectories": 432,
2643
+ "num_transitions": 52970,
2644
+ "proprio": {
2645
+ "max": [
2646
+ 0.0,
2647
+ 0.0,
2648
+ 0.0,
2649
+ 0.0,
2650
+ 0.0,
2651
+ 0.0,
2652
+ 0.0
2653
+ ],
2654
+ "mean": [
2655
+ 0.0,
2656
+ 0.0,
2657
+ 0.0,
2658
+ 0.0,
2659
+ 0.0,
2660
+ 0.0,
2661
+ 0.0
2662
+ ],
2663
+ "min": [
2664
+ 0.0,
2665
+ 0.0,
2666
+ 0.0,
2667
+ 0.0,
2668
+ 0.0,
2669
+ 0.0,
2670
+ 0.0
2671
+ ],
2672
+ "q01": [
2673
+ 0.0,
2674
+ 0.0,
2675
+ 0.0,
2676
+ 0.0,
2677
+ 0.0,
2678
+ 0.0,
2679
+ 0.0
2680
+ ],
2681
+ "q99": [
2682
+ 0.0,
2683
+ 0.0,
2684
+ 0.0,
2685
+ 0.0,
2686
+ 0.0,
2687
+ 0.0,
2688
+ 0.0
2689
+ ],
2690
+ "std": [
2691
+ 0.0,
2692
+ 0.0,
2693
+ 0.0,
2694
+ 0.0,
2695
+ 0.0,
2696
+ 0.0,
2697
+ 0.0
2698
+ ]
2699
+ }
2700
+ },
2701
+ "nyu_franka_play_dataset_converted_externally_to_rlds/0.1.0": {
2702
+ "action": {
2703
+ "mask": [
2704
+ true,
2705
+ true,
2706
+ true,
2707
+ true,
2708
+ true,
2709
+ true,
2710
+ false
2711
+ ],
2712
+ "max": [
2713
+ 0.06424188613891602,
2714
+ 0.07027634978294373,
2715
+ 0.06129661202430725,
2716
+ 6.281067848205566,
2717
+ 0.1967729926109314,
2718
+ 0.26377415657043457,
2719
+ 1.0
2720
+ ],
2721
+ "mean": [
2722
+ 0.0010219910182058811,
2723
+ -0.00012002632865915075,
2724
+ 0.00032894135802052915,
2725
+ 0.0015034276293590665,
2726
+ -0.002198528265580535,
2727
+ -0.0016632305923849344,
2728
+ 0.7230083346366882
2729
+ ],
2730
+ "min": [
2731
+ -0.05952230095863342,
2732
+ -0.07232445478439331,
2733
+ -0.06730806827545166,
2734
+ -6.278434753417969,
2735
+ -0.21479034423828125,
2736
+ -0.3627619743347168,
2737
+ 0.0
2738
+ ],
2739
+ "q01": [
2740
+ -0.03199600875377655,
2741
+ -0.032861671447753905,
2742
+ -0.03368805110454559,
2743
+ -0.12080862045288086,
2744
+ -0.12175218224525451,
2745
+ -0.11370223641395569,
2746
+ 0.0
2747
+ ],
2748
+ "q99": [
2749
+ 0.03101520001888276,
2750
+ 0.0373908892273903,
2751
+ 0.03646374464035038,
2752
+ 0.11764093399047852,
2753
+ 0.1258920183777809,
2754
+ 0.09366151213645942,
2755
+ 1.0
2756
+ ],
2757
+ "std": [
2758
+ 0.013274150900542736,
2759
+ 0.013215919025242329,
2760
+ 0.01282210648059845,
2761
+ 0.27324533462524414,
2762
+ 0.05702253058552742,
2763
+ 0.03917279839515686,
2764
+ 0.44753193855285645
2765
+ ]
2766
+ },
2767
+ "num_trajectories": 456,
2768
+ "num_transitions": 44875,
2769
+ "proprio": {
2770
+ "max": [
2771
+ 0.0,
2772
+ 0.0,
2773
+ 0.0,
2774
+ 0.0,
2775
+ 0.0,
2776
+ 0.0,
2777
+ 0.0
2778
+ ],
2779
+ "mean": [
2780
+ 0.0,
2781
+ 0.0,
2782
+ 0.0,
2783
+ 0.0,
2784
+ 0.0,
2785
+ 0.0,
2786
+ 0.0
2787
+ ],
2788
+ "min": [
2789
+ 0.0,
2790
+ 0.0,
2791
+ 0.0,
2792
+ 0.0,
2793
+ 0.0,
2794
+ 0.0,
2795
+ 0.0
2796
+ ],
2797
+ "q01": [
2798
+ 0.0,
2799
+ 0.0,
2800
+ 0.0,
2801
+ 0.0,
2802
+ 0.0,
2803
+ 0.0,
2804
+ 0.0
2805
+ ],
2806
+ "q99": [
2807
+ 0.0,
2808
+ 0.0,
2809
+ 0.0,
2810
+ 0.0,
2811
+ 0.0,
2812
+ 0.0,
2813
+ 0.0
2814
+ ],
2815
+ "std": [
2816
+ 0.0,
2817
+ 0.0,
2818
+ 0.0,
2819
+ 0.0,
2820
+ 0.0,
2821
+ 0.0,
2822
+ 0.0
2823
+ ]
2824
+ }
2825
+ },
2826
+ "rh20t_rlds/1.0.0": {
2827
+ "action": {
2828
+ "mask": [
2829
+ true,
2830
+ true,
2831
+ true,
2832
+ true,
2833
+ true,
2834
+ true,
2835
+ false
2836
+ ],
2837
+ "max": [
2838
+ 7.582831568163597e+35,
2839
+ 7.557172735451728e+35,
2840
+ 2.2717764477020827e+27,
2841
+ 3.1415927410125732,
2842
+ 1.5116956233978271,
2843
+ 3.1415927410125732,
2844
+ 1.0
2845
+ ],
2846
+ "mean": [
2847
+ -5.332157638779582e+28,
2848
+ -1.5128827327837974e+29,
2849
+ -1.832736619079747e+28,
2850
+ 0.5735913515090942,
2851
+ -0.00847744569182396,
2852
+ -0.5566052198410034,
2853
+ 0.3186892569065094
2854
+ ],
2855
+ "min": [
2856
+ -3.5543094244408723e+36,
2857
+ -8.723098019507117e+36,
2858
+ -9.648338287048974e+35,
2859
+ -3.1415927410125732,
2860
+ -1.5062522888183594,
2861
+ -3.1415927410125732,
2862
+ 0.0
2863
+ ],
2864
+ "q01": [
2865
+ 0.36028257966041566,
2866
+ -0.272584410905838,
2867
+ 0.005985925104469062,
2868
+ -3.1411514282226562,
2869
+ -0.5925320792198181,
2870
+ -3.1415159702301025,
2871
+ 0.0
2872
+ ],
2873
+ "q99": [
2874
+ 0.7534684538841248,
2875
+ 0.31738221645355225,
2876
+ 0.33061375379562374,
2877
+ 3.141425132751465,
2878
+ 0.47507260441780086,
2879
+ 3.141479730606079,
2880
+ 1.0
2881
+ ],
2882
+ "std": [
2883
+ Infinity,
2884
+ Infinity,
2885
+ Infinity,
2886
+ 2.2581026554107666,
2887
+ 0.1548534482717514,
2888
+ 2.2581026554107666,
2889
+ 0.39917993545532227
2890
+ ]
2891
+ },
2892
+ "num_trajectories": 104392,
2893
+ "num_transitions": 52644433,
2894
+ "proprio": {
2895
+ "max": [
2896
+ 0.0,
2897
+ 0.0,
2898
+ 0.0,
2899
+ 0.0,
2900
+ 0.0,
2901
+ 0.0,
2902
+ 0.0
2903
+ ],
2904
+ "mean": [
2905
+ 0.0,
2906
+ 0.0,
2907
+ 0.0,
2908
+ 0.0,
2909
+ 0.0,
2910
+ 0.0,
2911
+ 0.0
2912
+ ],
2913
+ "min": [
2914
+ 0.0,
2915
+ 0.0,
2916
+ 0.0,
2917
+ 0.0,
2918
+ 0.0,
2919
+ 0.0,
2920
+ 0.0
2921
+ ],
2922
+ "q01": [
2923
+ 0.0,
2924
+ 0.0,
2925
+ 0.0,
2926
+ 0.0,
2927
+ 0.0,
2928
+ 0.0,
2929
+ 0.0
2930
+ ],
2931
+ "q99": [
2932
+ 0.0,
2933
+ 0.0,
2934
+ 0.0,
2935
+ 0.0,
2936
+ 0.0,
2937
+ 0.0,
2938
+ 0.0
2939
+ ],
2940
+ "std": [
2941
+ 0.0,
2942
+ 0.0,
2943
+ 0.0,
2944
+ 0.0,
2945
+ 0.0,
2946
+ 0.0,
2947
+ 0.0
2948
+ ]
2949
+ }
2950
+ },
2951
+ "roboturk/0.1.0": {
2952
+ "action": {
2953
+ "mask": [
2954
+ true,
2955
+ true,
2956
+ true,
2957
+ true,
2958
+ true,
2959
+ true,
2960
+ false
2961
+ ],
2962
+ "max": [
2963
+ 0.39124172925949097,
2964
+ 0.4601028263568878,
2965
+ 0.4870833456516266,
2966
+ 1.816888689994812,
2967
+ 1.8240282535552979,
2968
+ 1.4824820756912231,
2969
+ 1.0
2970
+ ],
2971
+ "mean": [
2972
+ 0.001444889116100967,
2973
+ -0.0015945355407893658,
2974
+ -0.0011753803119063377,
2975
+ 0.002301239175722003,
2976
+ -0.0009382442804053426,
2977
+ -0.00011485860886750743,
2978
+ 0.5746025443077087
2979
+ ],
2980
+ "min": [
2981
+ -0.6546999216079712,
2982
+ -0.6365841031074524,
2983
+ -0.4217723608016968,
2984
+ -1.6695482730865479,
2985
+ -1.8023357391357422,
2986
+ -1.4630827903747559,
2987
+ 0.0
2988
+ ],
2989
+ "q01": [
2990
+ -0.1342635464668274,
2991
+ -0.19996687173843383,
2992
+ -0.1482972100377083,
2993
+ -0.20720748245716095,
2994
+ -0.09676413893699647,
2995
+ -0.18075634717941286,
2996
+ 0.0
2997
+ ],
2998
+ "q99": [
2999
+ 0.14956976801157001,
3000
+ 0.1805950567126275,
3001
+ 0.18841815620660796,
3002
+ 0.21615413755178453,
3003
+ 0.09457383215427405,
3004
+ 0.18543301910162005,
3005
+ 1.0
3006
+ ],
3007
+ "std": [
3008
+ 0.0493537075817585,
3009
+ 0.06354564428329468,
3010
+ 0.06116492301225662,
3011
+ 0.0955340564250946,
3012
+ 0.08420011401176453,
3013
+ 0.06517910957336426,
3014
+ 0.4945177137851715
3015
+ ]
3016
+ },
3017
+ "num_trajectories": 1995,
3018
+ "num_transitions": 187507,
3019
+ "proprio": {
3020
+ "max": [
3021
+ 0.0,
3022
+ 0.0,
3023
+ 0.0,
3024
+ 0.0,
3025
+ 0.0,
3026
+ 0.0,
3027
+ 0.0
3028
+ ],
3029
+ "mean": [
3030
+ 0.0,
3031
+ 0.0,
3032
+ 0.0,
3033
+ 0.0,
3034
+ 0.0,
3035
+ 0.0,
3036
+ 0.0
3037
+ ],
3038
+ "min": [
3039
+ 0.0,
3040
+ 0.0,
3041
+ 0.0,
3042
+ 0.0,
3043
+ 0.0,
3044
+ 0.0,
3045
+ 0.0
3046
+ ],
3047
+ "q01": [
3048
+ 0.0,
3049
+ 0.0,
3050
+ 0.0,
3051
+ 0.0,
3052
+ 0.0,
3053
+ 0.0,
3054
+ 0.0
3055
+ ],
3056
+ "q99": [
3057
+ 0.0,
3058
+ 0.0,
3059
+ 0.0,
3060
+ 0.0,
3061
+ 0.0,
3062
+ 0.0,
3063
+ 0.0
3064
+ ],
3065
+ "std": [
3066
+ 0.0,
3067
+ 0.0,
3068
+ 0.0,
3069
+ 0.0,
3070
+ 0.0,
3071
+ 0.0,
3072
+ 0.0
3073
+ ]
3074
+ }
3075
+ },
3076
+ "stanford_hydra_dataset_converted_externally_to_rlds/0.1.0": {
3077
+ "action": {
3078
+ "mask": [
3079
+ true,
3080
+ true,
3081
+ true,
3082
+ true,
3083
+ true,
3084
+ true,
3085
+ false
3086
+ ],
3087
+ "max": [
3088
+ 0.02499854564666748,
3089
+ 0.02499903365969658,
3090
+ 0.024999922141432762,
3091
+ 0.24974457919597626,
3092
+ 0.24997030198574066,
3093
+ 0.24999946355819702,
3094
+ 1.0
3095
+ ],
3096
+ "mean": [
3097
+ 0.0007790043600834906,
3098
+ 0.00013707877951674163,
3099
+ -0.000254859565757215,
3100
+ 0.0012903243768960238,
3101
+ -0.004751724191009998,
3102
+ 0.002692892448976636,
3103
+ 0.48855218291282654
3104
+ ],
3105
+ "min": [
3106
+ -0.024999044835567474,
3107
+ -0.024999700486660004,
3108
+ -0.02499929815530777,
3109
+ -0.24993225932121277,
3110
+ -0.2499666064977646,
3111
+ -0.2499932497739792,
3112
+ 0.0
3113
+ ],
3114
+ "q01": [
3115
+ -0.019992006458342076,
3116
+ -0.02415412735193968,
3117
+ -0.022941758055239916,
3118
+ -0.11085530579090118,
3119
+ -0.12024572037160397,
3120
+ -0.13314770206809043,
3121
+ 0.0
3122
+ ],
3123
+ "q99": [
3124
+ 0.022886231057345868,
3125
+ 0.022358838934451335,
3126
+ 0.02410089675337076,
3127
+ 0.12370114490389822,
3128
+ 0.11323311634361738,
3129
+ 0.18474749639630164,
3130
+ 1.0
3131
+ ],
3132
+ "std": [
3133
+ 0.008022183552384377,
3134
+ 0.009131456725299358,
3135
+ 0.00957438349723816,
3136
+ 0.04122224077582359,
3137
+ 0.03843001648783684,
3138
+ 0.046067025512456894,
3139
+ 0.49978113174438477
3140
+ ]
3141
+ },
3142
+ "num_trajectories": 570,
3143
+ "num_transitions": 358234,
3144
+ "proprio": {
3145
+ "max": [
3146
+ 0.0,
3147
+ 0.0,
3148
+ 0.0,
3149
+ 0.0,
3150
+ 0.0,
3151
+ 0.0,
3152
+ 0.0
3153
+ ],
3154
+ "mean": [
3155
+ 0.0,
3156
+ 0.0,
3157
+ 0.0,
3158
+ 0.0,
3159
+ 0.0,
3160
+ 0.0,
3161
+ 0.0
3162
+ ],
3163
+ "min": [
3164
+ 0.0,
3165
+ 0.0,
3166
+ 0.0,
3167
+ 0.0,
3168
+ 0.0,
3169
+ 0.0,
3170
+ 0.0
3171
+ ],
3172
+ "q01": [
3173
+ 0.0,
3174
+ 0.0,
3175
+ 0.0,
3176
+ 0.0,
3177
+ 0.0,
3178
+ 0.0,
3179
+ 0.0
3180
+ ],
3181
+ "q99": [
3182
+ 0.0,
3183
+ 0.0,
3184
+ 0.0,
3185
+ 0.0,
3186
+ 0.0,
3187
+ 0.0,
3188
+ 0.0
3189
+ ],
3190
+ "std": [
3191
+ 0.0,
3192
+ 0.0,
3193
+ 0.0,
3194
+ 0.0,
3195
+ 0.0,
3196
+ 0.0,
3197
+ 0.0
3198
+ ]
3199
+ }
3200
+ },
3201
+ "taco_play/0.1.0": {
3202
+ "action": {
3203
+ "mask": [
3204
+ true,
3205
+ true,
3206
+ true,
3207
+ true,
3208
+ true,
3209
+ true,
3210
+ false
3211
+ ],
3212
+ "max": [
3213
+ 1.4915844202041626,
3214
+ 2.1842432022094727,
3215
+ 2.6836395263671875,
3216
+ 5.035226821899414,
3217
+ 2.665864944458008,
3218
+ 4.250768661499023,
3219
+ 1.0
3220
+ ],
3221
+ "mean": [
3222
+ -0.0038459226489067078,
3223
+ 0.009671436622738838,
3224
+ 0.01278059184551239,
3225
+ -0.0054037850350141525,
3226
+ -0.009606562554836273,
3227
+ -0.0024807206355035305,
3228
+ 0.4263913035392761
3229
+ ],
3230
+ "min": [
3231
+ -4.242457866668701,
3232
+ -3.192805051803589,
3233
+ -1.3371467590332031,
3234
+ -4.202683448791504,
3235
+ -2.6722638607025146,
3236
+ -3.3467135429382324,
3237
+ 0.0
3238
+ ],
3239
+ "q01": [
3240
+ -0.7106140398979186,
3241
+ -1.056944659948349,
3242
+ -0.5878450274467468,
3243
+ -0.7682853937149048,
3244
+ -0.7180147767066956,
3245
+ -1.5527938604354858,
3246
+ 0.0
3247
+ ],
3248
+ "q99": [
3249
+ 0.6482916426658629,
3250
+ 1.0051310062408447,
3251
+ 0.9480248689651489,
3252
+ 0.6926478147506714,
3253
+ 0.6351067513227462,
3254
+ 1.628010264635086,
3255
+ 1.0
3256
+ ],
3257
+ "std": [
3258
+ 0.23254045844078064,
3259
+ 0.3629826307296753,
3260
+ 0.2869291603565216,
3261
+ 0.261770635843277,
3262
+ 0.24388927221298218,
3263
+ 0.5216501355171204,
3264
+ 0.49469029903411865
3265
+ ]
3266
+ },
3267
+ "num_trajectories": 3603,
3268
+ "num_transitions": 237798,
3269
+ "proprio": {
3270
+ "max": [
3271
+ 0.0,
3272
+ 0.0,
3273
+ 0.0,
3274
+ 0.0,
3275
+ 0.0,
3276
+ 0.0,
3277
+ 0.0
3278
+ ],
3279
+ "mean": [
3280
+ 0.0,
3281
+ 0.0,
3282
+ 0.0,
3283
+ 0.0,
3284
+ 0.0,
3285
+ 0.0,
3286
+ 0.0
3287
+ ],
3288
+ "min": [
3289
+ 0.0,
3290
+ 0.0,
3291
+ 0.0,
3292
+ 0.0,
3293
+ 0.0,
3294
+ 0.0,
3295
+ 0.0
3296
+ ],
3297
+ "q01": [
3298
+ 0.0,
3299
+ 0.0,
3300
+ 0.0,
3301
+ 0.0,
3302
+ 0.0,
3303
+ 0.0,
3304
+ 0.0
3305
+ ],
3306
+ "q99": [
3307
+ 0.0,
3308
+ 0.0,
3309
+ 0.0,
3310
+ 0.0,
3311
+ 0.0,
3312
+ 0.0,
3313
+ 0.0
3314
+ ],
3315
+ "std": [
3316
+ 0.0,
3317
+ 0.0,
3318
+ 0.0,
3319
+ 0.0,
3320
+ 0.0,
3321
+ 0.0,
3322
+ 0.0
3323
+ ]
3324
+ }
3325
+ },
3326
+ "toto/0.1.0": {
3327
+ "action": {
3328
+ "mask": [
3329
+ true,
3330
+ true,
3331
+ true,
3332
+ true,
3333
+ true,
3334
+ true,
3335
+ false
3336
+ ],
3337
+ "max": [
3338
+ 0.6839867234230042,
3339
+ 0.4454185664653778,
3340
+ 0.7984078526496887,
3341
+ 2.120781660079956,
3342
+ 1.371164321899414,
3343
+ 1.4118704795837402,
3344
+ 0.0
3345
+ ],
3346
+ "mean": [
3347
+ 0.3854214549064636,
3348
+ 0.007769507821649313,
3349
+ 0.3632742166519165,
3350
+ -0.665202796459198,
3351
+ 0.1890396624803543,
3352
+ 0.0329875648021698,
3353
+ 0.0
3354
+ ],
3355
+ "min": [
3356
+ 0.09922284632921219,
3357
+ -0.5180193781852722,
3358
+ 0.13791072368621826,
3359
+ -2.635117530822754,
3360
+ -1.0734480619430542,
3361
+ -1.9282547235488892,
3362
+ 0.0
3363
+ ],
3364
+ "q01": [
3365
+ 0.1756722891330719,
3366
+ -0.3077590811252594,
3367
+ 0.235383919775486,
3368
+ -2.0908505964279174,
3369
+ -0.6191593289375306,
3370
+ -0.7488683319091797,
3371
+ 0.0
3372
+ ],
3373
+ "q99": [
3374
+ 0.6136963081359863,
3375
+ 0.33704194784164443,
3376
+ 0.6681221985816956,
3377
+ 0.7422861719131538,
3378
+ 0.7955395007133507,
3379
+ 0.740464625358582,
3380
+ 0.0
3381
+ ],
3382
+ "std": [
3383
+ 0.12211630493402481,
3384
+ 0.19378569722175598,
3385
+ 0.10178232192993164,
3386
+ 0.5725256204605103,
3387
+ 0.298846036195755,
3388
+ 0.32599160075187683,
3389
+ 0.0
3390
+ ]
3391
+ },
3392
+ "num_trajectories": 1003,
3393
+ "num_transitions": 325699,
3394
+ "proprio": {
3395
+ "max": [
3396
+ 0.0,
3397
+ 0.0,
3398
+ 0.0,
3399
+ 0.0,
3400
+ 0.0,
3401
+ 0.0,
3402
+ 0.0
3403
+ ],
3404
+ "mean": [
3405
+ 0.0,
3406
+ 0.0,
3407
+ 0.0,
3408
+ 0.0,
3409
+ 0.0,
3410
+ 0.0,
3411
+ 0.0
3412
+ ],
3413
+ "min": [
3414
+ 0.0,
3415
+ 0.0,
3416
+ 0.0,
3417
+ 0.0,
3418
+ 0.0,
3419
+ 0.0,
3420
+ 0.0
3421
+ ],
3422
+ "q01": [
3423
+ 0.0,
3424
+ 0.0,
3425
+ 0.0,
3426
+ 0.0,
3427
+ 0.0,
3428
+ 0.0,
3429
+ 0.0
3430
+ ],
3431
+ "q99": [
3432
+ 0.0,
3433
+ 0.0,
3434
+ 0.0,
3435
+ 0.0,
3436
+ 0.0,
3437
+ 0.0,
3438
+ 0.0
3439
+ ],
3440
+ "std": [
3441
+ 0.0,
3442
+ 0.0,
3443
+ 0.0,
3444
+ 0.0,
3445
+ 0.0,
3446
+ 0.0,
3447
+ 0.0
3448
+ ]
3449
+ }
3450
+ },
3451
+ "ucsd_kitchen_dataset_converted_externally_to_rlds/0.1.0": {
3452
+ "action": {
3453
+ "mask": [
3454
+ true,
3455
+ true,
3456
+ true,
3457
+ true,
3458
+ true,
3459
+ true,
3460
+ false
3461
+ ],
3462
+ "max": [
3463
+ 678.0,
3464
+ 400.0,
3465
+ 507.0,
3466
+ 180.00001525878906,
3467
+ 6.000013828277588,
3468
+ 116.99998474121094,
3469
+ 1.0
3470
+ ],
3471
+ "mean": [
3472
+ 410.375732421875,
3473
+ 116.9518814086914,
3474
+ 192.35031127929688,
3475
+ -121.22441864013672,
3476
+ -33.84892654418945,
3477
+ 50.016136169433594,
3478
+ 0.741813600063324
3479
+ ],
3480
+ "min": [
3481
+ 172.0,
3482
+ -166.0,
3483
+ -99.99999237060547,
3484
+ -180.00001525878906,
3485
+ -89.0,
3486
+ -96.00010681152344,
3487
+ 0.0
3488
+ ],
3489
+ "q01": [
3490
+ 200.00001052856445,
3491
+ -102.31004211425781,
3492
+ -94.99993370056153,
3493
+ -180.00001525878906,
3494
+ -88.00001525878906,
3495
+ -38.999977111816406,
3496
+ 0.0
3497
+ ],
3498
+ "q99": [
3499
+ 637.0,
3500
+ 368.30999999999995,
3501
+ 493.0,
3502
+ 180.00001525878906,
3503
+ 0.999983012676239,
3504
+ 105.00001525878906,
3505
+ 1.0
3506
+ ],
3507
+ "std": [
3508
+ 122.81488037109375,
3509
+ 108.80094909667969,
3510
+ 130.30345153808594,
3511
+ 116.2820053100586,
3512
+ 27.62191390991211,
3513
+ 41.02091979980469,
3514
+ 0.4376337230205536
3515
+ ]
3516
+ },
3517
+ "num_trajectories": 150,
3518
+ "num_transitions": 3970,
3519
+ "proprio": {
3520
+ "max": [
3521
+ 0.0,
3522
+ 0.0,
3523
+ 0.0,
3524
+ 0.0,
3525
+ 0.0,
3526
+ 0.0,
3527
+ 0.0
3528
+ ],
3529
+ "mean": [
3530
+ 0.0,
3531
+ 0.0,
3532
+ 0.0,
3533
+ 0.0,
3534
+ 0.0,
3535
+ 0.0,
3536
+ 0.0
3537
+ ],
3538
+ "min": [
3539
+ 0.0,
3540
+ 0.0,
3541
+ 0.0,
3542
+ 0.0,
3543
+ 0.0,
3544
+ 0.0,
3545
+ 0.0
3546
+ ],
3547
+ "q01": [
3548
+ 0.0,
3549
+ 0.0,
3550
+ 0.0,
3551
+ 0.0,
3552
+ 0.0,
3553
+ 0.0,
3554
+ 0.0
3555
+ ],
3556
+ "q99": [
3557
+ 0.0,
3558
+ 0.0,
3559
+ 0.0,
3560
+ 0.0,
3561
+ 0.0,
3562
+ 0.0,
3563
+ 0.0
3564
+ ],
3565
+ "std": [
3566
+ 0.0,
3567
+ 0.0,
3568
+ 0.0,
3569
+ 0.0,
3570
+ 0.0,
3571
+ 0.0,
3572
+ 0.0
3573
+ ]
3574
+ }
3575
+ },
3576
+ "utaustin_mutex/0.1.0": {
3577
+ "action": {
3578
+ "mask": [
3579
+ true,
3580
+ true,
3581
+ true,
3582
+ true,
3583
+ true,
3584
+ true,
3585
+ false
3586
+ ],
3587
+ "max": [
3588
+ 1.0,
3589
+ 1.0,
3590
+ 1.0,
3591
+ 0.375,
3592
+ 0.375,
3593
+ 0.375,
3594
+ 1.0
3595
+ ],
3596
+ "mean": [
3597
+ 0.06176406517624855,
3598
+ -0.005005490034818649,
3599
+ 0.10216782987117767,
3600
+ -0.03314131125807762,
3601
+ 0.013895022682845592,
3602
+ -0.011317633092403412,
3603
+ 0.5038976669311523
3604
+ ],
3605
+ "min": [
3606
+ -1.0,
3607
+ -1.0,
3608
+ -1.0,
3609
+ -0.375,
3610
+ -0.375,
3611
+ -0.375,
3612
+ 0.0
3613
+ ],
3614
+ "q01": [
3615
+ -0.4285714328289032,
3616
+ -0.9800000190734863,
3617
+ -0.5571428537368774,
3618
+ -0.375,
3619
+ -0.15642857551574707,
3620
+ -0.335357129573822,
3621
+ 0.0
3622
+ ],
3623
+ "q99": [
3624
+ 0.5914285778999329,
3625
+ 0.9714285731315613,
3626
+ 1.0,
3627
+ 0.3278571367263794,
3628
+ 0.207857146859169,
3629
+ 0.25607141852378845,
3630
+ 1.0
3631
+ ],
3632
+ "std": [
3633
+ 0.187501460313797,
3634
+ 0.4468473196029663,
3635
+ 0.3792876601219177,
3636
+ 0.14097853004932404,
3637
+ 0.06453699618577957,
3638
+ 0.11765265464782715,
3639
+ 0.501045286655426
3640
+ ]
3641
+ },
3642
+ "num_trajectories": 1500,
3643
+ "num_transitions": 361883,
3644
+ "proprio": {
3645
+ "max": [
3646
+ 0.0,
3647
+ 0.0,
3648
+ 0.0,
3649
+ 0.0,
3650
+ 0.0,
3651
+ 0.0,
3652
+ 0.0
3653
+ ],
3654
+ "mean": [
3655
+ 0.0,
3656
+ 0.0,
3657
+ 0.0,
3658
+ 0.0,
3659
+ 0.0,
3660
+ 0.0,
3661
+ 0.0
3662
+ ],
3663
+ "min": [
3664
+ 0.0,
3665
+ 0.0,
3666
+ 0.0,
3667
+ 0.0,
3668
+ 0.0,
3669
+ 0.0,
3670
+ 0.0
3671
+ ],
3672
+ "q01": [
3673
+ 0.0,
3674
+ 0.0,
3675
+ 0.0,
3676
+ 0.0,
3677
+ 0.0,
3678
+ 0.0,
3679
+ 0.0
3680
+ ],
3681
+ "q99": [
3682
+ 0.0,
3683
+ 0.0,
3684
+ 0.0,
3685
+ 0.0,
3686
+ 0.0,
3687
+ 0.0,
3688
+ 0.0
3689
+ ],
3690
+ "std": [
3691
+ 0.0,
3692
+ 0.0,
3693
+ 0.0,
3694
+ 0.0,
3695
+ 0.0,
3696
+ 0.0,
3697
+ 0.0
3698
+ ]
3699
+ }
3700
+ },
3701
+ "viola/0.1.0": {
3702
+ "action": {
3703
+ "mask": [
3704
+ true,
3705
+ true,
3706
+ true,
3707
+ true,
3708
+ true,
3709
+ true,
3710
+ false
3711
+ ],
3712
+ "max": [
3713
+ 1.0,
3714
+ 1.0,
3715
+ 1.0,
3716
+ 0.375,
3717
+ 0.36321428418159485,
3718
+ 0.375,
3719
+ 1.0
3720
+ ],
3721
+ "mean": [
3722
+ 0.04761853069067001,
3723
+ -0.029204534366726875,
3724
+ 0.055867329239845276,
3725
+ -0.0026185200549662113,
3726
+ 0.006867341697216034,
3727
+ -0.016821356490254402,
3728
+ 0.7323777675628662
3729
+ ],
3730
+ "min": [
3731
+ -1.0,
3732
+ -1.0,
3733
+ -1.0,
3734
+ -0.375,
3735
+ -0.375,
3736
+ -0.375,
3737
+ 0.0
3738
+ ],
3739
+ "q01": [
3740
+ -0.9628571271896362,
3741
+ -1.0,
3742
+ -1.0,
3743
+ -0.26249998807907104,
3744
+ -0.21321429312229156,
3745
+ -0.3385714292526245,
3746
+ 0.0
3747
+ ],
3748
+ "q99": [
3749
+ 0.9114285707473755,
3750
+ 0.868571400642395,
3751
+ 1.0,
3752
+ 0.2817857265472412,
3753
+ 0.2239285707473755,
3754
+ 0.3557142913341522,
3755
+ 1.0
3756
+ ],
3757
+ "std": [
3758
+ 0.39157867431640625,
3759
+ 0.40765219926834106,
3760
+ 0.40077903866767883,
3761
+ 0.10023998469114304,
3762
+ 0.08443189412355423,
3763
+ 0.10375089943408966,
3764
+ 0.442600816488266
3765
+ ]
3766
+ },
3767
+ "num_trajectories": 150,
3768
+ "num_transitions": 76324,
3769
+ "proprio": {
3770
+ "max": [
3771
+ 0.0,
3772
+ 0.0,
3773
+ 0.0,
3774
+ 0.0,
3775
+ 0.0,
3776
+ 0.0,
3777
+ 0.0
3778
+ ],
3779
+ "mean": [
3780
+ 0.0,
3781
+ 0.0,
3782
+ 0.0,
3783
+ 0.0,
3784
+ 0.0,
3785
+ 0.0,
3786
+ 0.0
3787
+ ],
3788
+ "min": [
3789
+ 0.0,
3790
+ 0.0,
3791
+ 0.0,
3792
+ 0.0,
3793
+ 0.0,
3794
+ 0.0,
3795
+ 0.0
3796
+ ],
3797
+ "q01": [
3798
+ 0.0,
3799
+ 0.0,
3800
+ 0.0,
3801
+ 0.0,
3802
+ 0.0,
3803
+ 0.0,
3804
+ 0.0
3805
+ ],
3806
+ "q99": [
3807
+ 0.0,
3808
+ 0.0,
3809
+ 0.0,
3810
+ 0.0,
3811
+ 0.0,
3812
+ 0.0,
3813
+ 0.0
3814
+ ],
3815
+ "std": [
3816
+ 0.0,
3817
+ 0.0,
3818
+ 0.0,
3819
+ 0.0,
3820
+ 0.0,
3821
+ 0.0,
3822
+ 0.0
3823
+ ]
3824
+ }
3825
+ }
3826
+ }
3827
+ }
checkpoint-4500/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:377bba4ecd420d5772191432f55bb25bbc2610e2f29bc227a2b1705b6a07e689
3
+ size 14498
checkpoint-4500/special_tokens_map.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<image>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ }
10
+ ],
11
+ "bos_token": {
12
+ "content": "<bos>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false
17
+ },
18
+ "eos_token": {
19
+ "content": "<eos>",
20
+ "lstrip": false,
21
+ "normalized": false,
22
+ "rstrip": false,
23
+ "single_word": false
24
+ },
25
+ "pad_token": {
26
+ "content": "<pad>",
27
+ "lstrip": false,
28
+ "normalized": false,
29
+ "rstrip": false,
30
+ "single_word": false
31
+ },
32
+ "unk_token": {
33
+ "content": "<unk>",
34
+ "lstrip": false,
35
+ "normalized": false,
36
+ "rstrip": false,
37
+ "single_word": false
38
+ }
39
+ }
checkpoint-4500/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2523a63c898ebf0a32c7282a2e459ef2c950a846c5f3172305089e4149b6b6c3
3
+ size 36157680
checkpoint-4500/tokenizer_config.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-4500/trainer_state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bca31d7cf81339398135aee03017c25c631f57410fadacdd38c77df157ba167
3
+ size 17287214
checkpoint-4500/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:692a6960b2b8371501eeed1a2dfdbbe2c6a5727c188813ef7d5e38877285c804
3
+ size 7416
checkpoint-4500/zero_to_fp32.py ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+
3
+ # Copyright (c) Microsoft Corporation.
4
+ # SPDX-License-Identifier: Apache-2.0
5
+
6
+ # DeepSpeed Team
7
+
8
+ # This script extracts fp32 consolidated weights from a zero 1, 2 and 3 DeepSpeed checkpoints. It gets
9
+ # copied into the top level checkpoint dir, so the user can easily do the conversion at any point in
10
+ # the future. Once extracted, the weights don't require DeepSpeed and can be used in any
11
+ # application.
12
+ #
13
+ # example:
14
+ # python zero_to_fp32.py . output_dir/
15
+ # or
16
+ # python zero_to_fp32.py . output_dir/ --safe_serialization
17
+
18
+ import argparse
19
+ import torch
20
+ import glob
21
+ import math
22
+ import os
23
+ import re
24
+ import json
25
+ from tqdm import tqdm
26
+ from collections import OrderedDict
27
+ from dataclasses import dataclass
28
+
29
+ # while this script doesn't use deepspeed to recover data, since the checkpoints are pickled with
30
+ # DeepSpeed data structures it has to be available in the current python environment.
31
+ from deepspeed.utils import logger
32
+ from deepspeed.checkpoint.constants import (DS_VERSION, OPTIMIZER_STATE_DICT, SINGLE_PARTITION_OF_FP32_GROUPS,
33
+ FP32_FLAT_GROUPS, ZERO_STAGE, PARTITION_COUNT, PARAM_SHAPES, BUFFER_NAMES,
34
+ FROZEN_PARAM_SHAPES, FROZEN_PARAM_FRAGMENTS)
35
+
36
+
37
+ @dataclass
38
+ class zero_model_state:
39
+ buffers: dict()
40
+ param_shapes: dict()
41
+ shared_params: list
42
+ ds_version: int
43
+ frozen_param_shapes: dict()
44
+ frozen_param_fragments: dict()
45
+
46
+
47
+ debug = 0
48
+
49
+ # load to cpu
50
+ device = torch.device('cpu')
51
+
52
+
53
+ def atoi(text):
54
+ return int(text) if text.isdigit() else text
55
+
56
+
57
+ def natural_keys(text):
58
+ '''
59
+ alist.sort(key=natural_keys) sorts in human order
60
+ http://nedbatchelder.com/blog/200712/human_sorting.html
61
+ (See Toothy's implementation in the comments)
62
+ '''
63
+ return [atoi(c) for c in re.split(r'(\d+)', text)]
64
+
65
+
66
+ def get_model_state_file(checkpoint_dir, zero_stage):
67
+ if not os.path.isdir(checkpoint_dir):
68
+ raise FileNotFoundError(f"Directory '{checkpoint_dir}' doesn't exist")
69
+
70
+ # there should be only one file
71
+ if zero_stage <= 2:
72
+ file = os.path.join(checkpoint_dir, "mp_rank_00_model_states.pt")
73
+ elif zero_stage == 3:
74
+ file = os.path.join(checkpoint_dir, "zero_pp_rank_0_mp_rank_00_model_states.pt")
75
+
76
+ if not os.path.exists(file):
77
+ raise FileNotFoundError(f"can't find model states file at '{file}'")
78
+
79
+ return file
80
+
81
+
82
+ def get_checkpoint_files(checkpoint_dir, glob_pattern):
83
+ # XXX: need to test that this simple glob rule works for multi-node setup too
84
+ ckpt_files = sorted(glob.glob(os.path.join(checkpoint_dir, glob_pattern)), key=natural_keys)
85
+
86
+ if len(ckpt_files) == 0:
87
+ raise FileNotFoundError(f"can't find {glob_pattern} files in directory '{checkpoint_dir}'")
88
+
89
+ return ckpt_files
90
+
91
+
92
+ def get_optim_files(checkpoint_dir):
93
+ return get_checkpoint_files(checkpoint_dir, "*_optim_states.pt")
94
+
95
+
96
+ def get_model_state_files(checkpoint_dir):
97
+ return get_checkpoint_files(checkpoint_dir, "*_model_states.pt")
98
+
99
+
100
+ def parse_model_states(files):
101
+ zero_model_states = []
102
+ for file in files:
103
+ state_dict = torch.load(file, map_location=device)
104
+
105
+ if BUFFER_NAMES not in state_dict:
106
+ raise ValueError(f"{file} is not a model state checkpoint")
107
+ buffer_names = state_dict[BUFFER_NAMES]
108
+ if debug:
109
+ print("Found buffers:", buffer_names)
110
+
111
+ # recover just the buffers while restoring them to fp32 if they were saved in fp16
112
+ buffers = {k: v.float() for k, v in state_dict["module"].items() if k in buffer_names}
113
+ param_shapes = state_dict[PARAM_SHAPES]
114
+
115
+ # collect parameters that are included in param_shapes
116
+ param_names = []
117
+ for s in param_shapes:
118
+ for name in s.keys():
119
+ param_names.append(name)
120
+
121
+ # update with frozen parameters
122
+ frozen_param_shapes = state_dict.get(FROZEN_PARAM_SHAPES, None)
123
+ if frozen_param_shapes is not None:
124
+ if debug:
125
+ print(f"Found frozen_param_shapes: {frozen_param_shapes}")
126
+ param_names += list(frozen_param_shapes.keys())
127
+
128
+ # handle shared params
129
+ shared_params = [[k, v] for k, v in state_dict["shared_params"].items()]
130
+
131
+ ds_version = state_dict.get(DS_VERSION, None)
132
+
133
+ frozen_param_fragments = state_dict.get(FROZEN_PARAM_FRAGMENTS, None)
134
+
135
+ z_model_state = zero_model_state(buffers=buffers,
136
+ param_shapes=param_shapes,
137
+ shared_params=shared_params,
138
+ ds_version=ds_version,
139
+ frozen_param_shapes=frozen_param_shapes,
140
+ frozen_param_fragments=frozen_param_fragments)
141
+ zero_model_states.append(z_model_state)
142
+
143
+ return zero_model_states
144
+
145
+
146
+ def parse_optim_states(files, ds_checkpoint_dir):
147
+ total_files = len(files)
148
+ state_dicts = []
149
+ for f in files:
150
+ state_dict = torch.load(f, map_location=device)
151
+ # immediately discard the potentially huge 2 optimizer states as we only care for fp32 master weights
152
+ # and also handle the case where it was already removed by another helper script
153
+ state_dict["optimizer_state_dict"].pop("optimizer_state_dict", None)
154
+ state_dicts.append(state_dict)
155
+
156
+ if not ZERO_STAGE in state_dicts[0][OPTIMIZER_STATE_DICT]:
157
+ raise ValueError(f"{files[0]} is not a zero checkpoint")
158
+ zero_stage = state_dicts[0][OPTIMIZER_STATE_DICT][ZERO_STAGE]
159
+ world_size = state_dicts[0][OPTIMIZER_STATE_DICT][PARTITION_COUNT]
160
+
161
+ # For ZeRO-2 each param group can have different partition_count as data parallelism for expert
162
+ # parameters can be different from data parallelism for non-expert parameters. So we can just
163
+ # use the max of the partition_count to get the dp world_size.
164
+
165
+ if type(world_size) is list:
166
+ world_size = max(world_size)
167
+
168
+ if world_size != total_files:
169
+ raise ValueError(
170
+ f"Expected {world_size} of '*_optim_states.pt' under '{ds_checkpoint_dir}' but found {total_files} files. "
171
+ "Possibly due to an overwrite of an old checkpoint, or a checkpoint didn't get saved by one or more processes."
172
+ )
173
+
174
+ # the groups are named differently in each stage
175
+ if zero_stage <= 2:
176
+ fp32_groups_key = SINGLE_PARTITION_OF_FP32_GROUPS
177
+ elif zero_stage == 3:
178
+ fp32_groups_key = FP32_FLAT_GROUPS
179
+ else:
180
+ raise ValueError(f"unknown zero stage {zero_stage}")
181
+
182
+ if zero_stage <= 2:
183
+ fp32_flat_groups = [state_dicts[i][OPTIMIZER_STATE_DICT][fp32_groups_key] for i in range(len(state_dicts))]
184
+ elif zero_stage == 3:
185
+ # if there is more than one param group, there will be multiple flattened tensors - one
186
+ # flattened tensor per group - for simplicity merge them into a single tensor
187
+ #
188
+ # XXX: could make the script more memory efficient for when there are multiple groups - it
189
+ # will require matching the sub-lists of param_shapes for each param group flattened tensor
190
+
191
+ fp32_flat_groups = [
192
+ torch.cat(state_dicts[i][OPTIMIZER_STATE_DICT][fp32_groups_key], 0) for i in range(len(state_dicts))
193
+ ]
194
+
195
+ return zero_stage, world_size, fp32_flat_groups
196
+
197
+
198
+ def _get_fp32_state_dict_from_zero_checkpoint(ds_checkpoint_dir, exclude_frozen_parameters):
199
+ """
200
+ Returns fp32 state_dict reconstructed from ds checkpoint
201
+
202
+ Args:
203
+ - ``ds_checkpoint_dir``: path to the deepspeed checkpoint folder (where the optimizer files are)
204
+
205
+ """
206
+ print(f"Processing zero checkpoint '{ds_checkpoint_dir}'")
207
+
208
+ optim_files = get_optim_files(ds_checkpoint_dir)
209
+ zero_stage, world_size, fp32_flat_groups = parse_optim_states(optim_files, ds_checkpoint_dir)
210
+ print(f"Detected checkpoint of type zero stage {zero_stage}, world_size: {world_size}")
211
+
212
+ model_files = get_model_state_files(ds_checkpoint_dir)
213
+
214
+ zero_model_states = parse_model_states(model_files)
215
+ print(f'Parsing checkpoint created by deepspeed=={zero_model_states[0].ds_version}')
216
+
217
+ if zero_stage <= 2:
218
+ return _get_fp32_state_dict_from_zero2_checkpoint(world_size, fp32_flat_groups, zero_model_states,
219
+ exclude_frozen_parameters)
220
+ elif zero_stage == 3:
221
+ return _get_fp32_state_dict_from_zero3_checkpoint(world_size, fp32_flat_groups, zero_model_states,
222
+ exclude_frozen_parameters)
223
+
224
+
225
+ def _zero2_merge_frozen_params(state_dict, zero_model_states):
226
+ if zero_model_states[0].frozen_param_shapes is None or len(zero_model_states[0].frozen_param_shapes) == 0:
227
+ return
228
+
229
+ frozen_param_shapes = zero_model_states[0].frozen_param_shapes
230
+ frozen_param_fragments = zero_model_states[0].frozen_param_fragments
231
+
232
+ if debug:
233
+ num_elem = sum(s.numel() for s in frozen_param_shapes.values())
234
+ print(f'rank 0: {FROZEN_PARAM_SHAPES}.numel = {num_elem}')
235
+
236
+ wanted_params = len(frozen_param_shapes)
237
+ wanted_numel = sum(s.numel() for s in frozen_param_shapes.values())
238
+ avail_numel = sum([p.numel() for p in frozen_param_fragments.values()])
239
+ print(f'Frozen params: Have {avail_numel} numels to process.')
240
+ print(f'Frozen params: Need {wanted_numel} numels in {wanted_params} params')
241
+
242
+ total_params = 0
243
+ total_numel = 0
244
+ for name, shape in frozen_param_shapes.items():
245
+ total_params += 1
246
+ unpartitioned_numel = shape.numel()
247
+ total_numel += unpartitioned_numel
248
+
249
+ state_dict[name] = frozen_param_fragments[name]
250
+
251
+ if debug:
252
+ print(f"{name} full shape: {shape} unpartitioned numel {unpartitioned_numel} ")
253
+
254
+ print(f"Reconstructed Frozen fp32 state dict with {total_params} params {total_numel} elements")
255
+
256
+
257
+ def _has_callable(obj, fn):
258
+ attr = getattr(obj, fn, None)
259
+ return callable(attr)
260
+
261
+
262
+ def _zero2_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states):
263
+ param_shapes = zero_model_states[0].param_shapes
264
+
265
+ # Reconstruction protocol:
266
+ #
267
+ # XXX: document this
268
+
269
+ if debug:
270
+ for i in range(world_size):
271
+ for j in range(len(fp32_flat_groups[0])):
272
+ print(f"{FP32_FLAT_GROUPS}[{i}][{j}].shape={fp32_flat_groups[i][j].shape}")
273
+
274
+ # XXX: memory usage doubles here (zero2)
275
+ num_param_groups = len(fp32_flat_groups[0])
276
+ merged_single_partition_of_fp32_groups = []
277
+ for i in range(num_param_groups):
278
+ merged_partitions = [sd[i] for sd in fp32_flat_groups]
279
+ full_single_fp32_vector = torch.cat(merged_partitions, 0)
280
+ merged_single_partition_of_fp32_groups.append(full_single_fp32_vector)
281
+ avail_numel = sum(
282
+ [full_single_fp32_vector.numel() for full_single_fp32_vector in merged_single_partition_of_fp32_groups])
283
+
284
+ if debug:
285
+ wanted_params = sum([len(shapes) for shapes in param_shapes])
286
+ wanted_numel = sum([sum(shape.numel() for shape in shapes.values()) for shapes in param_shapes])
287
+ # not asserting if there is a mismatch due to possible padding
288
+ print(f"Have {avail_numel} numels to process.")
289
+ print(f"Need {wanted_numel} numels in {wanted_params} params.")
290
+
291
+ # params
292
+ # XXX: for huge models that can't fit into the host's RAM we will have to recode this to support
293
+ # out-of-core computing solution
294
+ total_numel = 0
295
+ total_params = 0
296
+ for shapes, full_single_fp32_vector in zip(param_shapes, merged_single_partition_of_fp32_groups):
297
+ offset = 0
298
+ avail_numel = full_single_fp32_vector.numel()
299
+ for name, shape in shapes.items():
300
+
301
+ unpartitioned_numel = shape.numel() if _has_callable(shape, 'numel') else math.prod(shape)
302
+ total_numel += unpartitioned_numel
303
+ total_params += 1
304
+
305
+ if debug:
306
+ print(f"{name} full shape: {shape} unpartitioned numel {unpartitioned_numel} ")
307
+ state_dict[name] = full_single_fp32_vector.narrow(0, offset, unpartitioned_numel).view(shape)
308
+ offset += unpartitioned_numel
309
+
310
+ # Z2 started to align to 2*world_size to improve nccl performance. Therefore both offset and
311
+ # avail_numel can differ by anywhere between 0..2*world_size. Due to two unrelated complex
312
+ # paddings performed in the code it's almost impossible to predict the exact numbers w/o the
313
+ # live optimizer object, so we are checking that the numbers are within the right range
314
+ align_to = 2 * world_size
315
+
316
+ def zero2_align(x):
317
+ return align_to * math.ceil(x / align_to)
318
+
319
+ if debug:
320
+ print(f"original offset={offset}, avail_numel={avail_numel}")
321
+
322
+ offset = zero2_align(offset)
323
+ avail_numel = zero2_align(avail_numel)
324
+
325
+ if debug:
326
+ print(f"aligned offset={offset}, avail_numel={avail_numel}")
327
+
328
+ # Sanity check
329
+ if offset != avail_numel:
330
+ raise ValueError(f"consumed {offset} numels out of {avail_numel} - something is wrong")
331
+
332
+ print(f"Reconstructed fp32 state dict with {total_params} params {total_numel} elements")
333
+
334
+
335
+ def _get_fp32_state_dict_from_zero2_checkpoint(world_size, fp32_flat_groups, zero_model_states,
336
+ exclude_frozen_parameters):
337
+ state_dict = OrderedDict()
338
+
339
+ # buffers
340
+ buffers = zero_model_states[0].buffers
341
+ state_dict.update(buffers)
342
+ if debug:
343
+ print(f"added {len(buffers)} buffers")
344
+
345
+ if not exclude_frozen_parameters:
346
+ _zero2_merge_frozen_params(state_dict, zero_model_states)
347
+
348
+ _zero2_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states)
349
+
350
+ # recover shared parameters
351
+ for pair in zero_model_states[0].shared_params:
352
+ if pair[1] in state_dict:
353
+ state_dict[pair[0]] = state_dict[pair[1]]
354
+
355
+ return state_dict
356
+
357
+
358
+ def zero3_partitioned_param_info(unpartitioned_numel, world_size):
359
+ remainder = unpartitioned_numel % world_size
360
+ padding_numel = (world_size - remainder) if remainder else 0
361
+ partitioned_numel = math.ceil(unpartitioned_numel / world_size)
362
+ return partitioned_numel, padding_numel
363
+
364
+
365
+ def _zero3_merge_frozen_params(state_dict, world_size, zero_model_states):
366
+ if zero_model_states[0].frozen_param_shapes is None or len(zero_model_states[0].frozen_param_shapes) == 0:
367
+ return
368
+
369
+ if debug:
370
+ for i in range(world_size):
371
+ num_elem = sum(s.numel() for s in zero_model_states[i].frozen_param_fragments.values())
372
+ print(f'rank {i}: {FROZEN_PARAM_SHAPES}.numel = {num_elem}')
373
+
374
+ frozen_param_shapes = zero_model_states[0].frozen_param_shapes
375
+ wanted_params = len(frozen_param_shapes)
376
+ wanted_numel = sum(s.numel() for s in frozen_param_shapes.values())
377
+ avail_numel = sum([p.numel() for p in zero_model_states[0].frozen_param_fragments.values()]) * world_size
378
+ print(f'Frozen params: Have {avail_numel} numels to process.')
379
+ print(f'Frozen params: Need {wanted_numel} numels in {wanted_params} params')
380
+
381
+ total_params = 0
382
+ total_numel = 0
383
+ for name, shape in zero_model_states[0].frozen_param_shapes.items():
384
+ total_params += 1
385
+ unpartitioned_numel = shape.numel()
386
+ total_numel += unpartitioned_numel
387
+
388
+ param_frags = tuple(model_state.frozen_param_fragments[name] for model_state in zero_model_states)
389
+ state_dict[name] = torch.cat(param_frags, 0).narrow(0, 0, unpartitioned_numel).view(shape)
390
+
391
+ partitioned_numel, partitioned_padding_numel = zero3_partitioned_param_info(unpartitioned_numel, world_size)
392
+
393
+ if debug:
394
+ print(
395
+ f"Frozen params: {total_params} {name} full shape: {shape} partition0 numel={partitioned_numel} partitioned_padding_numel={partitioned_padding_numel}"
396
+ )
397
+
398
+ print(f"Reconstructed Frozen fp32 state dict with {total_params} params {total_numel} elements")
399
+
400
+
401
+ def _zero3_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states):
402
+ param_shapes = zero_model_states[0].param_shapes
403
+ avail_numel = fp32_flat_groups[0].numel() * world_size
404
+ # Reconstruction protocol: For zero3 we need to zip the partitions together at boundary of each
405
+ # param, re-consolidating each param, while dealing with padding if any
406
+
407
+ # merge list of dicts, preserving order
408
+ param_shapes = {k: v for d in param_shapes for k, v in d.items()}
409
+
410
+ if debug:
411
+ for i in range(world_size):
412
+ print(f"{FP32_FLAT_GROUPS}[{i}].shape={fp32_flat_groups[i].shape}")
413
+
414
+ wanted_params = len(param_shapes)
415
+ wanted_numel = sum(shape.numel() for shape in param_shapes.values())
416
+ # not asserting if there is a mismatch due to possible padding
417
+ avail_numel = fp32_flat_groups[0].numel() * world_size
418
+ print(f"Trainable params: Have {avail_numel} numels to process.")
419
+ print(f"Trainable params: Need {wanted_numel} numels in {wanted_params} params.")
420
+
421
+ # params
422
+ # XXX: for huge models that can't fit into the host's RAM we will have to recode this to support
423
+ # out-of-core computing solution
424
+ offset = 0
425
+ total_numel = 0
426
+ total_params = 0
427
+ for name, shape in tqdm(param_shapes.items(), desc='Gathering Sharded Weights'):
428
+ unpartitioned_numel = shape.numel()
429
+ total_numel += unpartitioned_numel
430
+ total_params += 1
431
+ partitioned_numel, partitioned_padding_numel = zero3_partitioned_param_info(unpartitioned_numel, world_size)
432
+
433
+ if debug:
434
+ print(
435
+ f"Trainable params: {total_params} {name} full shape: {shape} partition0 numel={partitioned_numel} partitioned_padding_numel={partitioned_padding_numel}"
436
+ )
437
+
438
+ # XXX: memory usage doubles here
439
+ state_dict[name] = torch.cat(
440
+ tuple(fp32_flat_groups[i].narrow(0, offset, partitioned_numel) for i in range(world_size)),
441
+ 0).narrow(0, 0, unpartitioned_numel).view(shape)
442
+ offset += partitioned_numel
443
+
444
+ offset *= world_size
445
+
446
+ # Sanity check
447
+ if offset != avail_numel:
448
+ raise ValueError(f"consumed {offset} numels out of {avail_numel} - something is wrong")
449
+
450
+ print(f"Reconstructed Trainable fp32 state dict with {total_params} params {total_numel} elements")
451
+
452
+
453
+ def _get_fp32_state_dict_from_zero3_checkpoint(world_size, fp32_flat_groups, zero_model_states,
454
+ exclude_frozen_parameters):
455
+ state_dict = OrderedDict()
456
+
457
+ # buffers
458
+ buffers = zero_model_states[0].buffers
459
+ state_dict.update(buffers)
460
+ if debug:
461
+ print(f"added {len(buffers)} buffers")
462
+
463
+ if not exclude_frozen_parameters:
464
+ _zero3_merge_frozen_params(state_dict, world_size, zero_model_states)
465
+
466
+ _zero3_merge_trainable_params(state_dict, world_size, fp32_flat_groups, zero_model_states)
467
+
468
+ # recover shared parameters
469
+ for pair in zero_model_states[0].shared_params:
470
+ if pair[1] in state_dict:
471
+ state_dict[pair[0]] = state_dict[pair[1]]
472
+
473
+ return state_dict
474
+
475
+
476
+ def get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag=None, exclude_frozen_parameters=False):
477
+ """
478
+ Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated state_dict that can be loaded with
479
+ ``load_state_dict()`` and used for training without DeepSpeed or shared with others, for example
480
+ via a model hub.
481
+
482
+ Args:
483
+ - ``checkpoint_dir``: path to the desired checkpoint folder
484
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in 'latest' file. e.g., ``global_step14``
485
+ - ``exclude_frozen_parameters``: exclude frozen parameters
486
+
487
+ Returns:
488
+ - pytorch ``state_dict``
489
+
490
+ Note: this approach may not work if your application doesn't have sufficient free CPU memory and
491
+ you may need to use the offline approach using the ``zero_to_fp32.py`` script that is saved with
492
+ the checkpoint.
493
+
494
+ A typical usage might be ::
495
+
496
+ from deepspeed.utils.zero_to_fp32 import get_fp32_state_dict_from_zero_checkpoint
497
+ # do the training and checkpoint saving
498
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir) # already on cpu
499
+ model = model.cpu() # move to cpu
500
+ model.load_state_dict(state_dict)
501
+ # submit to model hub or save the model to share with others
502
+
503
+ In this example the ``model`` will no longer be usable in the deepspeed context of the same
504
+ application. i.e. you will need to re-initialize the deepspeed engine, since
505
+ ``model.load_state_dict(state_dict)`` will remove all the deepspeed magic from it.
506
+
507
+ If you want it all done for you, use ``load_state_dict_from_zero_checkpoint`` instead.
508
+
509
+ """
510
+ if tag is None:
511
+ latest_path = os.path.join(checkpoint_dir, 'latest')
512
+ if os.path.isfile(latest_path):
513
+ with open(latest_path, 'r') as fd:
514
+ tag = fd.read().strip()
515
+ else:
516
+ raise ValueError(f"Unable to find 'latest' file at {latest_path}")
517
+
518
+ ds_checkpoint_dir = os.path.join(checkpoint_dir, tag)
519
+
520
+ if not os.path.isdir(ds_checkpoint_dir):
521
+ raise FileNotFoundError(f"Directory '{ds_checkpoint_dir}' doesn't exist")
522
+
523
+ return _get_fp32_state_dict_from_zero_checkpoint(ds_checkpoint_dir, exclude_frozen_parameters)
524
+
525
+
526
+ def convert_zero_checkpoint_to_fp32_state_dict(checkpoint_dir,
527
+ output_dir,
528
+ max_shard_size="5GB",
529
+ safe_serialization=False,
530
+ tag=None,
531
+ exclude_frozen_parameters=False):
532
+ """
533
+ Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated ``state_dict`` file that can be
534
+ loaded with ``torch.load(file)`` + ``load_state_dict()`` and used for training without DeepSpeed.
535
+
536
+ Args:
537
+ - ``checkpoint_dir``: path to the desired checkpoint folder. (one that contains the tag-folder, like ``global_step14``)
538
+ - ``output_dir``: directory to the pytorch fp32 state_dict output files
539
+ - ``max_shard_size``: the maximum size for a checkpoint before being sharded, default value is 5GB
540
+ - ``safe_serialization``: whether to save the model using `safetensors` or the traditional PyTorch way (that uses `pickle`).
541
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in the file named ``latest`` in the checkpoint folder, e.g., ``global_step14``
542
+ - ``exclude_frozen_parameters``: exclude frozen parameters
543
+ """
544
+ # Dependency pre-check
545
+ if safe_serialization:
546
+ try:
547
+ from safetensors.torch import save_file
548
+ except ImportError:
549
+ print('If you want to use `safe_serialization`, please `pip install safetensors`')
550
+ raise
551
+ if max_shard_size is not None:
552
+ try:
553
+ from huggingface_hub import split_torch_state_dict_into_shards
554
+ except ImportError:
555
+ print('If you want to use `max_shard_size`, please `pip install huggingface_hub`')
556
+ raise
557
+
558
+ # Convert zero checkpoint to state_dict
559
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag, exclude_frozen_parameters)
560
+
561
+ # Shard the model if it is too big.
562
+ weights_name = "model.safetensors" if safe_serialization else "pytorch_model.bin"
563
+ if max_shard_size is not None:
564
+ filename_pattern = weights_name.replace(".bin", "{suffix}.bin").replace(".safetensors", "{suffix}.safetensors")
565
+ state_dict_split = split_torch_state_dict_into_shards(state_dict,
566
+ filename_pattern=filename_pattern,
567
+ max_shard_size=max_shard_size)
568
+ else:
569
+ from collections import namedtuple
570
+ StateDictSplit = namedtuple("StateDictSplit", ["is_sharded", "filename_to_tensors"])
571
+ state_dict_split = StateDictSplit(is_sharded=False,
572
+ filename_to_tensors={weights_name: list(state_dict.keys())})
573
+
574
+ # Save the model
575
+ filename_to_tensors = state_dict_split.filename_to_tensors.items()
576
+ for shard_file, tensors in tqdm(filename_to_tensors, desc="Saving checkpoint shards"):
577
+ shard = {tensor: state_dict[tensor].contiguous() for tensor in tensors}
578
+ output_path = os.path.join(output_dir, shard_file)
579
+ if safe_serialization:
580
+ save_file(shard, output_path, metadata={"format": "pt"})
581
+ else:
582
+ torch.save(shard, output_path)
583
+
584
+ # Save index if sharded
585
+ if state_dict_split.is_sharded:
586
+ index = {
587
+ "metadata": state_dict_split.metadata,
588
+ "weight_map": state_dict_split.tensor_to_filename,
589
+ }
590
+ save_index_file = "model.safetensors.index.json" if safe_serialization else "pytorch_model.bin.index.json"
591
+ save_index_file = os.path.join(output_dir, save_index_file)
592
+ with open(save_index_file, "w", encoding="utf-8") as f:
593
+ content = json.dumps(index, indent=2, sort_keys=True) + "\n"
594
+ f.write(content)
595
+
596
+
597
+ def load_state_dict_from_zero_checkpoint(model, checkpoint_dir, tag=None):
598
+ """
599
+ 1. Put the provided model to cpu
600
+ 2. Convert ZeRO 2 or 3 checkpoint into a single fp32 consolidated ``state_dict``
601
+ 3. Load it into the provided model
602
+
603
+ Args:
604
+ - ``model``: the model object to update
605
+ - ``checkpoint_dir``: path to the desired checkpoint folder. (one that contains the tag-folder, like ``global_step14``)
606
+ - ``tag``: checkpoint tag used as a unique identifier for checkpoint. If not provided will attempt to load tag in the file named ``latest`` in the checkpoint folder, e.g., ``global_step14``
607
+
608
+ Returns:
609
+ - ``model`: modified model
610
+
611
+ Make sure you have plenty of CPU memory available before you call this function. If you don't
612
+ have enough use the ``zero_to_fp32.py`` utility to do the conversion. You will find it
613
+ conveniently placed for you in the checkpoint folder.
614
+
615
+ A typical usage might be ::
616
+
617
+ from deepspeed.utils.zero_to_fp32 import load_state_dict_from_zero_checkpoint
618
+ model = load_state_dict_from_zero_checkpoint(trainer.model, checkpoint_dir)
619
+ # submit to model hub or save the model to share with others
620
+
621
+ Note, that once this was run, the ``model`` will no longer be usable in the deepspeed context
622
+ of the same application. i.e. you will need to re-initialize the deepspeed engine, since
623
+ ``model.load_state_dict(state_dict)`` will remove all the deepspeed magic from it.
624
+
625
+ """
626
+ logger.info(f"Extracting fp32 weights")
627
+ state_dict = get_fp32_state_dict_from_zero_checkpoint(checkpoint_dir, tag)
628
+
629
+ logger.info(f"Overwriting model with fp32 weights")
630
+ model = model.cpu()
631
+ model.load_state_dict(state_dict, strict=False)
632
+
633
+ return model
634
+
635
+
636
+ if __name__ == "__main__":
637
+ parser = argparse.ArgumentParser()
638
+ parser.add_argument("checkpoint_dir",
639
+ type=str,
640
+ help="path to the desired checkpoint folder, e.g., path/checkpoint-12")
641
+ parser.add_argument("output_dir",
642
+ type=str,
643
+ help="directory to the pytorch fp32 state_dict output files"
644
+ "(e.g. path/checkpoint-12-output/)")
645
+ parser.add_argument(
646
+ "--max_shard_size",
647
+ type=str,
648
+ default="5GB",
649
+ help="The maximum size for a checkpoint before being sharded. Checkpoints shard will then be each of size"
650
+ "lower than this size. If expressed as a string, needs to be digits followed by a unit (like `5MB`"
651
+ "We default it to 5GB in order for models to be able to run easily on free-tier google colab instances"
652
+ "without CPU OOM issues.")
653
+ parser.add_argument(
654
+ "--safe_serialization",
655
+ default=False,
656
+ action='store_true',
657
+ help="Whether to save the model using `safetensors` or the traditional PyTorch way (that uses `pickle`).")
658
+ parser.add_argument("-t",
659
+ "--tag",
660
+ type=str,
661
+ default=None,
662
+ help="checkpoint tag used as a unique identifier for checkpoint. e.g., global_step1")
663
+ parser.add_argument("--exclude_frozen_parameters", action='store_true', help="exclude frozen parameters")
664
+ parser.add_argument("-d", "--debug", action='store_true', help="enable debug")
665
+ args = parser.parse_args()
666
+
667
+ debug = args.debug
668
+
669
+ convert_zero_checkpoint_to_fp32_state_dict(args.checkpoint_dir,
670
+ args.output_dir,
671
+ max_shard_size=args.max_shard_size,
672
+ safe_serialization=args.safe_serialization,
673
+ tag=args.tag,
674
+ exclude_frozen_parameters=args.exclude_frozen_parameters)