arnoldland commited on
Commit
643312c
·
1 Parent(s): 1d14074

Initial commit

Browse files

to upload the model

Files changed (4) hide show
  1. README.md +41 -0
  2. config.json +75 -0
  3. dataset_statistics.json +475 -0
  4. vitra-vla-3b.pt +3 -0
README.md CHANGED
@@ -1,3 +1,44 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ library_name: transformers
4
+ tags:
5
+ - Robotics
6
+ - Vision-Language-Action
7
+ - Manipulation
8
+ - Multimodal
9
+ - Pretraining
10
+ - Diffusion
11
+ language:
12
+ - en
13
+ pipeline_tag: Robotics
14
  ---
15
+ # VITRA-VLA-3B
16
+ VITRA is a novel approach for pretraining Vision-Language-Action (VLA) models for robotic manipulation using large-scale, unscripted, real-world videos of human hand activities. Treating human hand as dexterous robot end-effector, we show that in-the-wild egocentric human videos without any annotations can be transformed into data formats fully aligned with existing robotic V-L-A training data in terms of task granularity and labels. We create a human hand V-L-A dataset containing over 1 million episodes. We further develop a VLA model with a causal action transformer trained on this dataset. It demonstrates strong zero-shot human-hand action prediction in entirely new scenes and serves as a cornerstone for few-shot finetuning and adaptation to real-world robotic manipulation.
17
+
18
+
19
+ All our [code](https://github.com/microsoft/VITRA), [pre-trained model weights](https://huggingface.co/microsoft/VITRA-VLA-3B), are licensed under the MIT license.
20
+
21
+ Please refer to our [project page](https://microsoft.github.io/VITRA/) and [paper](https://arxiv.org/abs/2510.21571) for more details.
22
+
23
+
24
+ ## Model Summary
25
+
26
+ - **Developed by:** The VITRA team consisting of researchers from [Microsoft Research](https://www.microsoft.com/en-us/research/lab/microsoft-research-asia/).
27
+ - **Model type:** Vision-Language-Action (language, image => robot actions)
28
+ - **Language(s) (NLP):** en
29
+ - **License:** MIT
30
+ - **Pretraining Dataset:** [VITRA-1M](https://huggingface.co/datasets/VITRA-VLA/VITRA-1M)
31
+ - **Repository:** [https://github.com/microsoft/ViTra](https://github.com/microsoft/VITRA)
32
+ - **Paper:** [Scalable Vision-Language-Action Model Pretraining for Robotic Manipulation with Real-Life Human Activity Videos](https://arxiv.org/abs/2510.21571)
33
+ - **Project Page:** [https://microsoft.github.io/VITRA/](https://microsoft.github.io/VITRA/)
34
+
35
+ ## Citation
36
+
37
+ ```bibtex
38
+ @article{li2025vitra,
39
+ title={Scalable Vision-Language-Action Model Pretraining for Robotic Manipulation with Real-Life Human Activity Videos},
40
+ author={Qixiu Li and Yu Deng and Yaobo Liang and Lin Luo and Lei Zhou and Chengtang Yao and Lingqi Zeng and Zhiyuan Feng and Huizhi Liang and Sicheng Xu and Yizhong Zhang and Xi Chen and Hao Chen and Lily Sun and Dong Chen and Jiaolong Yang and Baining Guo},
41
+ journal={arXiv preprint arXiv:2510.21571},
42
+ year={2025}
43
+ }
44
+ ```
config.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vla_name": "VITRA_Paligemma",
3
+ "task_name": "pretrain",
4
+ "model": "vitra_paligemma2",
5
+ "fwd_pred_next_n": 16,
6
+ "seed": 42,
7
+ "batch_size": 64,
8
+ "output_root": "/data/vla_checkpoint/vitra_vla_3b/checkpoints",
9
+ "log_root": "/data/vla_checkpoint/vitra_vla_3b/logs",
10
+ "cache_root": "/data/vla_checkpoint/vitra_vla_3b/cache/vitra_paligemma2",
11
+ "model_load_path": null,
12
+ "resume": true,
13
+ "wandb_project": "vitra_paligemma2_humanpretrain",
14
+ "wandb_entity": "",
15
+ "save_steps": 5000,
16
+ "total_batch_size": 512,
17
+ "use_bf16": true,
18
+ "use_fov": true,
19
+ "untied_cognition_token": true,
20
+ "use_state": "DiT",
21
+ "loss_type": "human",
22
+ "train_setup": {
23
+ "freeze_option": "freeze_vision_encoder"
24
+ },
25
+ "state_encoder": {
26
+ "state_dim": 212
27
+ },
28
+ "action_model": {
29
+ "model_type": "DiT-B",
30
+ "token_size": 2304,
31
+ "action_dim": 192,
32
+ "hidden_size": 1024
33
+ },
34
+ "vlm": {
35
+ "type": "PaliGemmaForConditionalGeneration",
36
+ "name": "paligemma",
37
+ "pretrained_model_name_or_path": "google/paligemma2-3b-mix-224"
38
+ },
39
+ "trainer": {
40
+ "sharding_strategy": "shard-grad-op",
41
+ "strategy": "fsdp_paligemma_with_checkpointing",
42
+ "lr_scheduler_type": "backbone-freeze-warmup",
43
+ "gradient_clip_val": 1.0,
44
+ "learning_rate": 1e-05,
45
+ "weight_decay": 0.1,
46
+ "max_epochs": 100000,
47
+ "max_steps": 2000000,
48
+ "reduce_in_full_precision": true,
49
+ "enable_mixed_precision_training": false,
50
+ "enable_gradient_checkpointing": true,
51
+ "action_model_learning_rate": 0.0001,
52
+ "llm_freeze_step": 5000,
53
+ "warmup_ratio": null
54
+ },
55
+ "train_dataset": {
56
+ "data_root_dir": "/data/VITRA_1M",
57
+ "augmentation": true,
58
+ "set_none_ratio": 0.0,
59
+ "data_mix": "magic_mix",
60
+ "num_workers": 18,
61
+ "prefetch_factor": null,
62
+ "flip_augmentation": 1.0,
63
+ "action_type": "angle",
64
+ "use_rel": false,
65
+ "clip_len": 2000,
66
+ "normalization": true,
67
+ "state_mask_prob": 0.1
68
+ },
69
+ "repeated_diffusion_steps": 8,
70
+ "config": "vitra/configs/human_pretrain.json",
71
+ "data_mix": null,
72
+ "debug": false,
73
+ "num_workers": null,
74
+ "prefetch_factor": null
75
+ }
dataset_statistics.json ADDED
@@ -0,0 +1,475 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_name": "magic_mix_angle",
3
+ "state_left": {
4
+ "mean": [
5
+ -0.11579255147603508,
6
+ 0.09853558399019087,
7
+ 0.44707650050681974,
8
+ -1.2541853618288576,
9
+ -0.4000807535824712,
10
+ -1.2473501749009082,
11
+ 0.0014194980813503951,
12
+ -0.20215592029794455,
13
+ 0.4881023094619483,
14
+ 0.144666114219659,
15
+ -0.020534433704960837,
16
+ 0.7648325610127158,
17
+ -0.061935409523992874,
18
+ 0.12219282915289578,
19
+ 0.26113551921252837,
20
+ -0.18055030545219955,
21
+ 0.00818508913055498,
22
+ 0.8038736724790866,
23
+ -0.1813954125900856,
24
+ -0.05255599370465047,
25
+ 0.615207956050913,
26
+ 0.019420943883633742,
27
+ 0.08206648678538951,
28
+ 0.48009611970270755,
29
+ -0.29267464483981337,
30
+ 0.5924368191514214,
31
+ 0.6207362092964281,
32
+ -0.25156062915694505,
33
+ 0.042651493029024115,
34
+ 0.48423217349715236,
35
+ -0.334746772726311,
36
+ 0.15674395989629697,
37
+ 0.29122580010435584,
38
+ 0.002590410652552483,
39
+ 0.1964149148587996,
40
+ 0.835560202060088,
41
+ -0.36014970866233637,
42
+ 0.18172483650834523,
43
+ 0.46660463448032335,
44
+ -0.1580085402873619,
45
+ 0.1527547535010859,
46
+ 0.56291991927379,
47
+ 0.940616712603359,
48
+ -0.257409582255471,
49
+ -0.17166173691980588,
50
+ -0.5820884370125198,
51
+ -0.05102693864175229,
52
+ 0.08250452865880151,
53
+ 0.5624305682602475,
54
+ -0.10296209321668819,
55
+ 0.1503018356014215,
56
+ -0.5747307150940298,
57
+ 0.23351668183581697,
58
+ -1.1903627395932146,
59
+ -0.9084577659186075,
60
+ -0.6462851164081945,
61
+ -1.3938379994860928,
62
+ -1.0614910076816242,
63
+ 0.30291840524363217,
64
+ 0.36528067170784034,
65
+ 1.1302787101320517
66
+ ],
67
+ "std": [
68
+ 0.11614162849409655,
69
+ 0.11901126557680539,
70
+ 0.12419630282197135,
71
+ 2.0007552999619778,
72
+ 0.45448972901077384,
73
+ 0.7817598955940285,
74
+ 0.11128080284509624,
75
+ 0.12912182093439675,
76
+ 0.35545058646100175,
77
+ 0.12876485704777554,
78
+ 0.08435337718455918,
79
+ 0.36610667194321145,
80
+ 0.13724484904033574,
81
+ 0.10688082517603581,
82
+ 0.26567648172114117,
83
+ 0.16147559793613112,
84
+ 0.12473006685795233,
85
+ 0.44581730434535316,
86
+ 0.07306171120288285,
87
+ 0.08736870809283682,
88
+ 0.31900790613664437,
89
+ 0.072888562546578,
90
+ 0.06399497127762747,
91
+ 0.2663932808678995,
92
+ 0.33543888868189736,
93
+ 0.21170762055192094,
94
+ 0.3619610208163317,
95
+ 0.35235464267160205,
96
+ 0.2084891628496783,
97
+ 0.2235456188527172,
98
+ 0.22744935255345794,
99
+ 0.1885276766999644,
100
+ 0.3418175798449056,
101
+ 0.12194798172893641,
102
+ 0.1256308361024914,
103
+ 0.4346914289200111,
104
+ 0.08953834964768714,
105
+ 0.15567065816119383,
106
+ 0.3180041158189954,
107
+ 0.09816140209765825,
108
+ 0.08802720644673442,
109
+ 0.2866974922019247,
110
+ 0.2929987207576424,
111
+ 0.20324254048887913,
112
+ 0.15323708166010291,
113
+ 0.17404420224680545,
114
+ 0.1945877494178962,
115
+ 0.3252053447856269,
116
+ 0.22420596660717013,
117
+ 0.28561784696450015,
118
+ 0.2853439385961586,
119
+ 0.6396521245963158,
120
+ 0.2582481965386295,
121
+ 0.6770440958787715,
122
+ 0.32181806723846684,
123
+ 0.17694618334172266,
124
+ 0.5708438664188205,
125
+ 0.23984804504988888,
126
+ 0.16358736096578716,
127
+ 0.17581568964731845,
128
+ 0.15743956600317066
129
+ ]
130
+ },
131
+ "action_left": {
132
+ "mean": [
133
+ 9.201280270413256e-05,
134
+ -0.0004563322208652859,
135
+ 0.0003617891466070917,
136
+ -0.0003427012188614409,
137
+ -0.0002564684738122795,
138
+ 0.00011712473943147219,
139
+ 0.0014139227671159532,
140
+ -0.20215362312171495,
141
+ 0.4883238904456818,
142
+ 0.14473984845079738,
143
+ -0.020567718621431218,
144
+ 0.7651154595792194,
145
+ -0.061976103515996014,
146
+ 0.12226727847795801,
147
+ 0.26117868914664694,
148
+ -0.18061434692865094,
149
+ 0.00826280607268428,
150
+ 0.8041355462487079,
151
+ -0.18137487653545137,
152
+ -0.05257555295826352,
153
+ 0.6153581688280276,
154
+ 0.01942984430339739,
155
+ 0.08211296174733909,
156
+ 0.4802630569776921,
157
+ -0.2927880225943608,
158
+ 0.5925688028379226,
159
+ 0.6207528795340029,
160
+ -0.2515588953494671,
161
+ 0.042636435625136485,
162
+ 0.48434184787188456,
163
+ -0.3348895027302863,
164
+ 0.15671903162520343,
165
+ 0.2913429105139313,
166
+ 0.0026171841327992705,
167
+ 0.19648877443263496,
168
+ 0.8357650843097173,
169
+ -0.3601878069085853,
170
+ 0.1818397955054986,
171
+ 0.46672227904389374,
172
+ -0.15806518022867352,
173
+ 0.15275533037946065,
174
+ 0.5630445929293807,
175
+ 0.9408879190240531,
176
+ -0.25754508183600444,
177
+ -0.17176383718742938,
178
+ -0.5822175956770262,
179
+ -0.05109248819502697,
180
+ 0.08240467902412843,
181
+ 0.5625306126074148,
182
+ -0.10280732140233888,
183
+ 0.15035902087164887
184
+ ],
185
+ "std": [
186
+ 0.007177335636993517,
187
+ 0.007323014615215487,
188
+ 0.007108638558558272,
189
+ 0.03838344220758514,
190
+ 0.040972733963894115,
191
+ 0.04106513995602905,
192
+ 0.11129771071505476,
193
+ 0.12913963512346055,
194
+ 0.355464778471544,
195
+ 0.1287554216849025,
196
+ 0.08436753183315916,
197
+ 0.3661838001000936,
198
+ 0.1372491056452125,
199
+ 0.10690078174246394,
200
+ 0.2657842622899636,
201
+ 0.1614754862158314,
202
+ 0.1247228132417261,
203
+ 0.44582370853114633,
204
+ 0.07306784405186532,
205
+ 0.08739010735285878,
206
+ 0.3191330269342099,
207
+ 0.07288735784692742,
208
+ 0.06400415596108433,
209
+ 0.26651046131879086,
210
+ 0.3355727061159244,
211
+ 0.21172997529909793,
212
+ 0.36200594576304107,
213
+ 0.3525150130471941,
214
+ 0.20857451173150765,
215
+ 0.22362183701041413,
216
+ 0.22756636946981657,
217
+ 0.18861742937771767,
218
+ 0.34191283757471225,
219
+ 0.12199086416574195,
220
+ 0.12559905526299284,
221
+ 0.43476334926719845,
222
+ 0.08954847401088233,
223
+ 0.1557126939051543,
224
+ 0.3181014101167722,
225
+ 0.09817283234797235,
226
+ 0.08804499244769111,
227
+ 0.2867628887364027,
228
+ 0.29309290272774746,
229
+ 0.20317565434546034,
230
+ 0.15325299974903256,
231
+ 0.17404971850390882,
232
+ 0.19461596175157847,
233
+ 0.325123111971396,
234
+ 0.22423240037688688,
235
+ 0.28573026062918094,
236
+ 0.28530750875194993
237
+ ]
238
+ },
239
+ "state_right": {
240
+ "mean": [
241
+ 0.11585512642579204,
242
+ 0.09852785475620146,
243
+ 0.4472017838882995,
244
+ -1.2546634294247712,
245
+ 0.39996407665917405,
246
+ 1.24778099549795,
247
+ 0.001412634035388727,
248
+ -0.2021876628633721,
249
+ 0.48792879834001157,
250
+ 0.14459316525542248,
251
+ -0.02052885803866319,
252
+ 0.7649226888195222,
253
+ -0.061873089249993636,
254
+ 0.12219067022454297,
255
+ 0.26126941481972893,
256
+ -0.18057174367622797,
257
+ 0.008144257601891492,
258
+ 0.8037431575359127,
259
+ -0.1813684622351691,
260
+ -0.05254197165020591,
261
+ 0.6153151241999176,
262
+ 0.019415560460376794,
263
+ 0.08206879005769253,
264
+ 0.4800865894191521,
265
+ -0.29262389416926055,
266
+ 0.5922639840783065,
267
+ 0.6205970068957954,
268
+ -0.25158606978364245,
269
+ 0.042637170174102665,
270
+ 0.48423335539506124,
271
+ -0.3348539197622029,
272
+ 0.15674491435097035,
273
+ 0.29117609757999247,
274
+ 0.0025620085401069992,
275
+ 0.19633490606450155,
276
+ 0.8353808980400095,
277
+ -0.36011263555662215,
278
+ 0.1817254239823724,
279
+ 0.4667154358950734,
280
+ -0.15802000480938058,
281
+ 0.15278471908271476,
282
+ 0.562938927891565,
283
+ 0.9406496558464689,
284
+ -0.257373007925008,
285
+ -0.17157873617869576,
286
+ -0.5820549318596712,
287
+ -0.051051515342219425,
288
+ 0.08249499351422646,
289
+ 0.5624601534143484,
290
+ -0.10303987481127491,
291
+ 0.15033774699941863,
292
+ -0.5745389903062827,
293
+ 0.23351039478478441,
294
+ -1.1902195091811327,
295
+ -0.908353549224439,
296
+ -0.6461948833956079,
297
+ -1.393386540097237,
298
+ -1.0614970718967256,
299
+ 0.30286459932527054,
300
+ 0.3651559686763726,
301
+ 1.1301843929017004
302
+ ],
303
+ "std": [
304
+ 0.11613444573720885,
305
+ 0.11901790941228217,
306
+ 0.12423960101251118,
307
+ 2.0003104261737987,
308
+ 0.45447134679198004,
309
+ 0.7816114912726152,
310
+ 0.11129045505686999,
311
+ 0.12915989025569613,
312
+ 0.3554567667529193,
313
+ 0.1287770117110695,
314
+ 0.08437069436241484,
315
+ 0.3662595753207142,
316
+ 0.13719174278620397,
317
+ 0.10683695378613353,
318
+ 0.26563961902562566,
319
+ 0.1614757901944507,
320
+ 0.12472634019043978,
321
+ 0.4459152446405047,
322
+ 0.07304477943041221,
323
+ 0.08736058807876065,
324
+ 0.3190953696852229,
325
+ 0.07287199652137899,
326
+ 0.06397730661800535,
327
+ 0.2664615892181941,
328
+ 0.33533353619474193,
329
+ 0.21176998771110275,
330
+ 0.3620948338112789,
331
+ 0.35230210774422543,
332
+ 0.20843244550288792,
333
+ 0.22361627270253653,
334
+ 0.22739803761052255,
335
+ 0.18855208037939816,
336
+ 0.34182438278954985,
337
+ 0.12194055274979114,
338
+ 0.12564610143293212,
339
+ 0.4347866518877402,
340
+ 0.0895840032117932,
341
+ 0.1557079447450095,
342
+ 0.3181528205878221,
343
+ 0.09813314865033251,
344
+ 0.08801367369557361,
345
+ 0.28670638044605756,
346
+ 0.2929319771897599,
347
+ 0.20330135882077022,
348
+ 0.15333415522323987,
349
+ 0.17407193233130555,
350
+ 0.19461975554089886,
351
+ 0.32521003963028144,
352
+ 0.22419783328653944,
353
+ 0.2856585962011231,
354
+ 0.28531485693053504,
355
+ 0.6395046944136171,
356
+ 0.2581457810827793,
357
+ 0.6770729800021699,
358
+ 0.32191819394761656,
359
+ 0.17693328647166634,
360
+ 0.5711142959757236,
361
+ 0.23986195189121756,
362
+ 0.16371960905341892,
363
+ 0.17578311793753235,
364
+ 0.15744902675287897
365
+ ]
366
+ },
367
+ "action_right": {
368
+ "mean": [
369
+ -9.183413654731516e-05,
370
+ -0.0004571724624278521,
371
+ 0.00036719984809390675,
372
+ -0.00034841353207357736,
373
+ 0.0002609988965807757,
374
+ -0.00011327695069714617,
375
+ 0.001417289039899506,
376
+ -0.20218176833804377,
377
+ 0.4881301482481246,
378
+ 0.14466420684578885,
379
+ -0.02055669114716166,
380
+ 0.7651701713220371,
381
+ -0.0619237971459009,
382
+ 0.12226079105293888,
383
+ 0.26130075212237247,
384
+ -0.1806225022246296,
385
+ 0.008218724116626499,
386
+ 0.8039644050750685,
387
+ -0.18134867853171585,
388
+ -0.052555009159906345,
389
+ 0.6154517496548818,
390
+ 0.019421993022190682,
391
+ 0.08211448619373866,
392
+ 0.4802323569413772,
393
+ -0.2927226007138426,
394
+ 0.5923700304028582,
395
+ 0.6205759342117255,
396
+ -0.2515955699103106,
397
+ 0.042618912415462076,
398
+ 0.48433096342576415,
399
+ -0.33498599322011113,
400
+ 0.1567261381224921,
401
+ 0.29128616993263456,
402
+ 0.002590782578856707,
403
+ 0.1963989576489573,
404
+ 0.8355420400922449,
405
+ -0.3601471445064349,
406
+ 0.18183089067360303,
407
+ 0.4668307340842131,
408
+ -0.15808449133406852,
409
+ 0.15278912307093284,
410
+ 0.5630418833448485,
411
+ 0.9409358006882846,
412
+ -0.2575103383389611,
413
+ -0.17167577461292732,
414
+ -0.5821898438191407,
415
+ -0.051104438656083856,
416
+ 0.0823863891010596,
417
+ 0.5625648844622815,
418
+ -0.10288571771532973,
419
+ 0.15040164745539095
420
+ ],
421
+ "std": [
422
+ 0.007176547371510501,
423
+ 0.007322513109397528,
424
+ 0.007113076962986769,
425
+ 0.038237839376925195,
426
+ 0.04096481245854053,
427
+ 0.04100905449992395,
428
+ 0.11131317098602565,
429
+ 0.1291847660339212,
430
+ 0.3554905218962282,
431
+ 0.1287747108411097,
432
+ 0.08437966711877376,
433
+ 0.3663123509682592,
434
+ 0.13721371515626715,
435
+ 0.1068594576234084,
436
+ 0.2657702967257421,
437
+ 0.1615031274249978,
438
+ 0.12472932981401375,
439
+ 0.44596150225826314,
440
+ 0.0730684114259582,
441
+ 0.08739727255221826,
442
+ 0.31921839859373785,
443
+ 0.07287343116568247,
444
+ 0.06399901491867792,
445
+ 0.2665651762569098,
446
+ 0.3354871477636308,
447
+ 0.21180522510052424,
448
+ 0.3621549257811261,
449
+ 0.3524644945639798,
450
+ 0.20851868839392335,
451
+ 0.22370211394987788,
452
+ 0.22751559151704984,
453
+ 0.1886216707243024,
454
+ 0.34189811196929315,
455
+ 0.12198624275798856,
456
+ 0.12562642132107327,
457
+ 0.4348974375473972,
458
+ 0.08959453757611424,
459
+ 0.15574468223655724,
460
+ 0.31824911600176237,
461
+ 0.09815904234327474,
462
+ 0.08802379060051459,
463
+ 0.28676173641830466,
464
+ 0.29304320335731693,
465
+ 0.20324969302436036,
466
+ 0.15336124234578655,
467
+ 0.17407549505733239,
468
+ 0.19463239011417244,
469
+ 0.32515766963030956,
470
+ 0.2242245515909087,
471
+ 0.2857767125669773,
472
+ 0.2853074008480897
473
+ ]
474
+ }
475
+ }
vitra-vla-3b.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f57dfd4451d68f41accab8a06bb388d6fdc2cce87ee8b31fafa7c8f01d83796
3
+ size 15067578877