File size: 96,287 Bytes
9947df5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
|     |   accuracy |   bits |   clip | dataset     | method   | model     | params        |   peak_mem_alloc_mb |   peak_mem_reserv_mb |   perplexity |    time_ms |       wer |
|----:|-----------:|-------:|-------:|:------------|:---------|:----------|:--------------|--------------------:|---------------------:|-------------:|-----------:|----------:|
|   2 | 0          |      4 |      0 | wikitext    | comb_2   | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.35769 | 122.074    | 0         |
|   3 | 0          |      5 |      0 | wikitext    | comb_2   | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.35769 | 122.074    | 0         |
|   4 | 0          |      6 |      0 | wikitext    | comb_2   | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.35769 | 122.074    | 0         |
|   5 | 0          |      7 |      0 | wikitext    | comb_2   | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.35769 | 122.074    | 0         |
|   6 | 0          |      8 |      0 | wikitext    | comb_2   | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.35769 | 122.074    | 0         |
|   7 | 0          |      4 |      0 | wikitext    | comb_15  | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.12481 | 145.799    | 0         |
|   8 | 0          |      5 |      0 | wikitext    | comb_15  | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.12481 | 145.799    | 0         |
|   9 | 0          |      6 |      0 | wikitext    | comb_15  | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.12481 | 145.799    | 0         |
|  10 | 0          |      7 |      0 | wikitext    | comb_15  | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.12481 | 145.799    | 0         |
|  11 | 0          |      8 |      0 | wikitext    | comb_15  | llama3    | rnd_search_fb |           14178.7   |            15367.9   |      1.12481 | 145.799    | 0         |
|  12 | 0.440493   |      6 |      0 | wikitext    | comb_12  | llama3    | rnd_search_fb |           14179.2   |            15367.9   |      5.19914 |  68.4878   | 0         |
|  13 | 0.443735   |      8 |      0 | wikitext    | comb_12  | llama3    | rnd_search_fb |           14179.2   |            15367.9   |      5.20864 |  68.5548   | 0         |
|  14 | 0.435664   |      5 |      0 | wikitext    | comb_12  | llama3    | rnd_search_fb |           14179.2   |            15367.9   |      5.44902 |  68.6476   | 0         |
|  15 | 0.380108   |      4 |      0 | wikitext    | comb_12  | llama3    | rnd_search_fb |           14179.2   |            15367.9   |      6.15099 |  68.6574   | 0         |
|  16 | 0.442857   |      7 |      0 | wikitext    | comb_12  | llama3    | rnd_search_fb |           14179.2   |            15367.9   |      5.24819 |  68.6996   | 0         |
|  22 | 0          |      4 |      0 | wikitext    | comb_18  | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13185 | 147.377    | 0         |
|  23 | 0          |      5 |      0 | wikitext    | comb_18  | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13185 | 147.377    | 0         |
|  24 | 0          |      6 |      0 | wikitext    | comb_18  | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13185 | 147.377    | 0         |
|  25 | 0          |      7 |      0 | wikitext    | comb_18  | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13185 | 147.377    | 0         |
|  26 | 0          |      8 |      0 | wikitext    | comb_18  | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13185 | 147.377    | 0         |
|  27 | 0          |      4 |      0 | wikitext    | comb_8   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13665 | 147.45     | 0         |
|  28 | 0          |      5 |      0 | wikitext    | comb_8   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13665 | 147.45     | 0         |
|  29 | 0          |      6 |      0 | wikitext    | comb_8   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13665 | 147.45     | 0         |
|  30 | 0          |      7 |      0 | wikitext    | comb_8   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13665 | 147.45     | 0         |
|  31 | 0          |      8 |      0 | wikitext    | comb_8   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.13665 | 147.45     | 0         |
|  32 | 0          |      4 |      0 | wikitext    | comb_9   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.18411 | 148.324    | 0         |
|  33 | 0          |      5 |      0 | wikitext    | comb_9   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.18411 | 148.324    | 0         |
|  34 | 0          |      6 |      0 | wikitext    | comb_9   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.18411 | 148.324    | 0         |
|  35 | 0          |      7 |      0 | wikitext    | comb_9   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.18411 | 148.324    | 0         |
|  36 | 0          |      4 |      0 | wikitext    | comb_4   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.14597 | 201.41     | 0         |
|  37 | 0          |      5 |      0 | wikitext    | comb_4   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.14597 | 201.41     | 0         |
|  38 | 0          |      6 |      0 | wikitext    | comb_4   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.14597 | 201.41     | 0         |
|  39 | 0          |      7 |      0 | wikitext    | comb_4   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.14597 | 201.41     | 0         |
|  40 | 0          |      4 |      0 | wikitext    | comb_7   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.12481 | 201.595    | 0         |
|  41 | 0          |      5 |      0 | wikitext    | comb_7   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.12481 | 201.595    | 0         |
|  42 | 0          |      6 |      0 | wikitext    | comb_7   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.12481 | 201.595    | 0         |
|  43 | 0          |      7 |      0 | wikitext    | comb_7   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.12481 | 201.595    | 0         |
|  44 | 0          |      8 |      0 | wikitext    | comb_7   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.12481 | 201.595    | 0         |
|  45 | 0.0358613  |      8 |      0 | wikitext    | comb_9   | llama3    | rnd_search_fb |           14185.3   |            15374.2   |      1.66476 | 148.102    | 0         |
|  46 | 0.437386   |      5 |      0 | wikitext    | comb_10  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.41203 | 147.294    | 0         |
|  47 | 0.442891   |      7 |      0 | wikitext    | comb_10  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.23025 | 147.358    | 0         |
|  48 | 0.436373   |      5 |      0 | wikitext    | comb_11  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.43048 | 147.374    | 0         |
|  49 | 0.380784   |      4 |      0 | wikitext    | comb_11  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      6.23735 | 147.43     | 0         |
|  50 | 0.444377   |      8 |      0 | wikitext    | comb_10  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.20728 | 147.45     | 0         |
|  51 | 0.440257   |      6 |      0 | wikitext    | comb_10  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.23001 | 147.486    | 0         |
|  52 | 0.443904   |      8 |      0 | wikitext    | comb_16  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.20745 | 147.487    | 0         |
|  53 | 0.378386   |      4 |      0 | wikitext    | comb_10  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      6.16797 | 147.513    | 0         |
|  54 | 0.440088   |      6 |      0 | wikitext    | comb_16  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.19924 | 147.517    | 0         |
|  55 | 0.443769   |      8 |      0 | wikitext    | comb_11  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.20815 | 147.595    | 0         |
|  56 | 0.380952   |      4 |      0 | wikitext    | comb_16  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      6.23264 | 147.601    | 0         |
|  57 | 0.439818   |      6 |      0 | wikitext    | comb_11  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.19942 | 147.621    | 0         |
|  58 | 0.436508   |      5 |      0 | wikitext    | comb_16  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.43094 | 147.704    | 0         |
|  59 | 0.442351   |      7 |      0 | wikitext    | comb_11  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.24663 | 147.736    | 0         |
|  60 | 0.442215   |      7 |      0 | wikitext    | comb_16  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.24755 | 147.747    | 0         |
|  61 | 0.38048    |      4 |      0 | wikitext    | comb_1   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      6.17567 | 147.758    | 0         |
|  62 | 0.444411   |      8 |      0 | wikitext    | comb_1   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.20807 | 147.764    | 0         |
|  63 | 0.440257   |      6 |      0 | wikitext    | comb_1   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.19033 | 147.888    | 0         |
|  64 | 0.442384   |      7 |      0 | wikitext    | comb_1   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.24348 | 147.977    | 0         |
|  65 | 0.43563    |      5 |      0 | wikitext    | comb_1   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.42521 | 148.101    | 0         |
|  66 | 0.440696   |      6 |      0 | wikitext    | comb_17  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.23038 | 174.786    | 0         |
|  67 | 0.378419   |      4 |      0 | wikitext    | comb_17  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      6.15576 | 174.923    | 0         |
|  68 | 0.436373   |      5 |      0 | wikitext    | comb_17  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.39211 | 175.021    | 0         |
|  69 | 0.443533   |      7 |      0 | wikitext    | comb_17  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.22838 | 175.127    | 0         |
|  70 | 0.444107   |      8 |      0 | wikitext    | comb_17  | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.21486 | 175.245    | 0         |
|  71 | 0.442891   |      7 |      0 | wikitext    | comb_5   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.22931 | 200.902    | 0         |
|  72 | 0.378116   |      4 |      0 | wikitext    | comb_5   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      6.17802 | 200.946    | 0         |
|  73 | 0.444411   |      8 |      0 | wikitext    | comb_5   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.208   | 200.984    | 0         |
|  74 | 0.440257   |      6 |      0 | wikitext    | comb_5   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.23111 | 200.99     | 0         |
|  75 | 0.436879   |      5 |      0 | wikitext    | comb_5   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      5.4106  | 201.156    | 0         |
|  76 | 0.301655   |      8 |      0 | wikitext    | comb_4   | llama3    | rnd_search_fb |           14185.7   |            15374.2   |      8.71646 | 201.26     | 0         |
|  77 | 0          |      4 |      0 | wikitext    | comb_6   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.13115 |   4.39858  | 0         |
|  78 | 0          |      5 |      0 | wikitext    | comb_6   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.13115 |   4.39858  | 0         |
|  79 | 0          |      6 |      0 | wikitext    | comb_6   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.13115 |   4.39858  | 0         |
|  80 | 0          |      7 |      0 | wikitext    | comb_6   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.13115 |   4.39858  | 0         |
|  81 | 0          |      8 |      0 | wikitext    | comb_6   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.13115 |   4.39858  | 0         |
|  82 | 0          |      4 |      0 | wikitext    | comb_3   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.14006 |   4.40192  | 0         |
|  83 | 0          |      5 |      0 | wikitext    | comb_3   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.14006 |   4.40192  | 0         |
|  84 | 0          |      6 |      0 | wikitext    | comb_3   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.14006 |   4.40192  | 0         |
|  85 | 0          |      7 |      0 | wikitext    | comb_3   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.14006 |   4.40192  | 0         |
|  86 | 0          |      8 |      0 | wikitext    | comb_3   | llama3    | rnd_search_fb |           11051.9   |            18748.5   |      1.14006 |   4.40192  | 0         |
|  87 | 0          |      4 |      0 | wikitext    | comb_13  | llama3    | rnd_search_fb |           16812     |            19811.8   |      1.12481 | 426.139    | 0         |
|  88 | 0          |      5 |      0 | wikitext    | comb_13  | llama3    | rnd_search_fb |           16812     |            19811.8   |      1.12481 | 426.139    | 0         |
|  89 | 0          |      6 |      0 | wikitext    | comb_13  | llama3    | rnd_search_fb |           16812     |            19811.8   |      1.12481 | 426.139    | 0         |
|  90 | 0          |      7 |      0 | wikitext    | comb_13  | llama3    | rnd_search_fb |           16812     |            19811.8   |      1.12481 | 426.139    | 0         |
|  91 | 0          |      8 |      0 | wikitext    | comb_13  | llama3    | rnd_search_fb |           16812     |            19811.8   |      1.12481 | 426.139    | 0         |
|   5 | 0          |      4 |      0 | wikitext    | comb_2   | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.12245 |  71.7421   | 0         |
|   6 | 0.0015873  |      5 |      0 | wikitext    | comb_2   | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.13276 |  71.7944   | 0         |
|   7 | 0.0031746  |      6 |      0 | wikitext    | comb_2   | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.14225 |  71.7953   | 0         |
|   8 | 0.0031746  |      8 |      0 | wikitext    | comb_2   | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.14947 |  71.8952   | 0         |
|   9 | 0.0031746  |      7 |      0 | wikitext    | comb_2   | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.15147 |  71.913    | 0         |
|  10 | 0.00846561 |      7 |      0 | wikitext    | comb_15  | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.17503 |  94.3727   | 0         |
|  11 | 0.00846561 |      5 |      0 | wikitext    | comb_15  | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.17502 |  94.415    | 0         |
|  12 | 0.00846561 |      8 |      0 | wikitext    | comb_15  | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.17503 |  94.4418   | 0         |
|  13 | 0.00846561 |      4 |      0 | wikitext    | comb_15  | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.17502 |  94.4572   | 0         |
|  14 | 0.00846561 |      6 |      0 | wikitext    | comb_15  | phi       | rnd_search_fb |            4394.01  |             4697.62  |      1.17503 |  94.5535   | 0         |
|  15 | 0.354103   |      4 |      0 | wikitext    | comb_12  | phi       | rnd_search_fb |            4394.48  |             4697.62  |      6.47193 |  32.7496   | 0         |
|  16 | 0.378014   |      6 |      0 | wikitext    | comb_12  | phi       | rnd_search_fb |            4394.48  |             4697.62  |      5.9467  |  32.7725   | 0         |
|  17 | 0.375346   |      5 |      0 | wikitext    | comb_12  | phi       | rnd_search_fb |            4394.48  |             4697.62  |      5.97109 |  32.7807   | 0         |
|  18 | 0.37869    |      7 |      0 | wikitext    | comb_12  | phi       | rnd_search_fb |            4394.48  |             4697.62  |      5.90247 |  32.7877   | 0         |
|  19 | 0.380446   |      8 |      0 | wikitext    | comb_12  | phi       | rnd_search_fb |            4394.48  |             4697.62  |      5.90713 |  32.8996   | 0         |
|  20 | 0          |      4 |      0 | wikitext    | comb_9   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.12716 |  90.1719   | 0         |
|  21 | 0          |      5 |      0 | wikitext    | comb_9   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.12716 |  90.1719   | 0         |
|  22 | 0          |      6 |      0 | wikitext    | comb_9   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.12716 |  90.1719   | 0         |
|  23 | 0          |      7 |      0 | wikitext    | comb_9   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.12716 |  90.1719   | 0         |
|  24 | 0          |      8 |      0 | wikitext    | comb_9   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.12716 |  90.1719   | 0         |
|  25 | 0          |      4 |      0 | wikitext    | comb_8   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11708 |  90.1972   | 0         |
|  26 | 0          |      5 |      0 | wikitext    | comb_8   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11708 |  90.1972   | 0         |
|  27 | 0          |      6 |      0 | wikitext    | comb_8   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11708 |  90.1972   | 0         |
|  28 | 0          |      7 |      0 | wikitext    | comb_8   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11708 |  90.1972   | 0         |
|  29 | 0          |      8 |      0 | wikitext    | comb_8   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11708 |  90.1972   | 0         |
|  30 | 0          |      4 |      0 | wikitext    | comb_18  | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11554 |  90.3496   | 0         |
|  31 | 0          |      5 |      0 | wikitext    | comb_18  | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11554 |  90.3496   | 0         |
|  32 | 0          |      6 |      0 | wikitext    | comb_18  | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11554 |  90.3496   | 0         |
|  33 | 0          |      7 |      0 | wikitext    | comb_18  | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11554 |  90.3496   | 0         |
|  34 | 0          |      8 |      0 | wikitext    | comb_18  | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11554 |  90.3496   | 0         |
|  35 | 0.00952381 |      5 |      0 | wikitext    | comb_4   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.09769 | 137.276    | 0         |
|  36 | 0.0031746  |      4 |      0 | wikitext    | comb_7   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11355 | 137.308    | 0         |
|  37 | 0.0031746  |      6 |      0 | wikitext    | comb_7   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11355 | 137.366    | 0         |
|  38 | 0.0031746  |      5 |      0 | wikitext    | comb_7   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11355 | 137.375    | 0         |
|  39 | 0.00952381 |      6 |      0 | wikitext    | comb_4   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.1035  | 137.391    | 0         |
|  40 | 0.0031746  |      7 |      0 | wikitext    | comb_7   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11355 | 137.41     | 0         |
|  41 | 0          |      4 |      0 | wikitext    | comb_4   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.1117  | 137.435    | 0         |
|  42 | 0.0031746  |      8 |      0 | wikitext    | comb_7   | phi       | rnd_search_fb |            4397.37  |             4699.72  |      1.11355 | 137.572    | 0         |
|  43 | 0.347822   |      4 |      0 | wikitext    | comb_11  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.45405 |  90.3847   | 0         |
|  44 | 0.37977    |      7 |      0 | wikitext    | comb_11  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.91917 |  90.392    | 0         |
|  45 | 0.37359    |      5 |      0 | wikitext    | comb_10  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.00778 |  90.3985   | 0         |
|  46 | 0.372611   |      5 |      0 | wikitext    | comb_16  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.96205 |  90.4028   | 0         |
|  47 | 0.374671   |      5 |      0 | wikitext    | comb_1   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.03667 |  90.4163   | 0         |
|  48 | 0.350861   |      4 |      0 | wikitext    | comb_1   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.51777 |  90.448    | 0         |
|  49 | 0.379939   |      8 |      0 | wikitext    | comb_11  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.92328 |  90.4594   | 0         |
|  50 | 0.374502   |      5 |      0 | wikitext    | comb_11  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.08306 |  90.4739   | 0         |
|  51 | 0.345762   |      4 |      0 | wikitext    | comb_16  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.33862 |  90.4884   | 0         |
|  52 | 0.353597   |      4 |      0 | wikitext    | comb_10  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.48645 |  90.5041   | 0         |
|  53 | 0.379298   |      7 |      0 | wikitext    | comb_10  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.89551 |  90.5198   | 0         |
|  54 | 0.376596   |      6 |      0 | wikitext    | comb_11  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.98796 |  90.5403   | 0         |
|  55 | 0.377575   |      6 |      0 | wikitext    | comb_16  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.88727 |  90.5866   | 0         |
|  56 | 0.37386    |      7 |      0 | wikitext    | comb_16  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.842   |  90.6003   | 0         |
|  57 | 0.380615   |      8 |      0 | wikitext    | comb_10  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.91437 |  90.6182   | 0         |
|  58 | 0.378757   |      7 |      0 | wikitext    | comb_1   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.89898 |  90.6455   | 0         |
|  59 | 0.376562   |      6 |      0 | wikitext    | comb_1   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.02762 |  90.6572   | 0         |
|  60 | 0.378183   |      6 |      0 | wikitext    | comb_10  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.9448  |  90.7009   | 0         |
|  61 | 0.377102   |      8 |      0 | wikitext    | comb_1   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.9307  |  90.7687   | 0         |
|  62 | 0.377271   |      8 |      0 | wikitext    | comb_16  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.84935 |  90.8007   | 0         |
|  63 | 0.355117   |      4 |      0 | wikitext    | comb_17  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.46052 | 112.586    | 0         |
|  64 | 0.374873   |      5 |      0 | wikitext    | comb_17  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.01405 | 112.598    | 0         |
|  65 | 0.379027   |      7 |      0 | wikitext    | comb_17  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.88136 | 112.685    | 0         |
|  66 | 0.37717    |      6 |      0 | wikitext    | comb_17  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.93145 | 112.71     | 0         |
|  67 | 0.379601   |      8 |      0 | wikitext    | comb_17  | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.91621 | 112.829    | 0         |
|  68 | 0.211685   |      7 |      0 | wikitext    | comb_4   | phi       | rnd_search_fb |            4397.84  |             4699.72  |     14.4655  | 137.696    | 0         |
|  69 | 0.378487   |      6 |      0 | wikitext    | comb_5   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.93586 | 137.719    | 0         |
|  70 | 0.375785   |      5 |      0 | wikitext    | comb_5   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.02808 | 137.724    | 0         |
|  71 | 0.354238   |      4 |      0 | wikitext    | comb_5   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      6.51178 | 137.759    | 0         |
|  72 | 0.378926   |      7 |      0 | wikitext    | comb_5   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.89542 | 137.767    | 0         |
|  73 | 0.378014   |      8 |      0 | wikitext    | comb_5   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.92855 | 137.925    | 0         |
|  74 | 0.371462   |      8 |      0 | wikitext    | comb_4   | phi       | rnd_search_fb |            4397.84  |             4699.72  |      5.93457 | 138.011    | 0         |
|  75 | 0          |      4 |      0 | wikitext    | comb_3   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.11348 |   1.69919  | 0         |
|  76 | 0          |      5 |      0 | wikitext    | comb_3   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.11348 |   1.69919  | 0         |
|  77 | 0          |      6 |      0 | wikitext    | comb_3   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.11348 |   1.69919  | 0         |
|  78 | 0          |      7 |      0 | wikitext    | comb_3   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.11348 |   1.69919  | 0         |
|  79 | 0          |      4 |      0 | wikitext    | comb_6   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.1149  |   1.72279  | 0         |
|  80 | 0          |      5 |      0 | wikitext    | comb_6   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.1149  |   1.72279  | 0         |
|  81 | 0          |      6 |      0 | wikitext    | comb_6   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.1149  |   1.72279  | 0         |
|  82 | 0          |      7 |      0 | wikitext    | comb_6   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.1149  |   1.72279  | 0         |
|  83 | 0          |      8 |      0 | wikitext    | comb_6   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.1149  |   1.72279  | 0         |
|  84 | 0.00476191 |      8 |      0 | wikitext    | comb_3   | phi       | rnd_search_fb |            3361.68  |             5358.22  |      1.10936 |   1.85085  | 0         |
|  85 | 0.0031746  |      4 |      0 | wikitext    | comb_13  | phi       | rnd_search_fb |            5052.73  |             5880.41  |      1.11355 | 328.117    | 0         |
|  86 | 0.0031746  |      8 |      0 | wikitext    | comb_13  | phi       | rnd_search_fb |            5052.73  |             5880.41  |      1.11355 | 328.189    | 0         |
|  87 | 0.0031746  |      7 |      0 | wikitext    | comb_13  | phi       | rnd_search_fb |            5052.73  |             5880.41  |      1.11355 | 328.249    | 0         |
|  88 | 0.0031746  |      5 |      0 | wikitext    | comb_13  | phi       | rnd_search_fb |            5052.73  |             5880.41  |      1.11355 | 328.352    | 0         |
|  89 | 0.0031746  |      6 |      0 | wikitext    | comb_13  | phi       | rnd_search_fb |            5052.73  |             5880.41  |      1.11355 | 328.452    | 0         |
|  91 | 0          |      4 |      0 | librispeech | comb_2   | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  27.9288   | 1         |
|  92 | 0          |      5 |      0 | librispeech | comb_2   | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  27.9288   | 1         |
|  93 | 0          |      6 |      0 | librispeech | comb_2   | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  27.9288   | 1         |
|  94 | 0          |      7 |      0 | librispeech | comb_2   | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  27.9288   | 1         |
|  95 | 0          |      8 |      0 | librispeech | comb_2   | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  27.9288   | 1         |
|  96 | 0          |      4 |      0 | librispeech | comb_15  | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  29.7976   | 1         |
|  97 | 0          |      5 |      0 | librispeech | comb_15  | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  29.7976   | 1         |
|  98 | 0          |      6 |      0 | librispeech | comb_15  | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  29.7976   | 1         |
|  99 | 0          |      7 |      0 | librispeech | comb_15  | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  29.7976   | 1         |
| 100 | 0          |      8 |      0 | librispeech | comb_15  | wav2vec   | rnd_search_fb |             534.743 |             1604.32  |      0       |  29.7976   | 1         |
| 101 | 0          |      4 |      0 | librispeech | comb_8   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.2329   | 1         |
| 102 | 0          |      5 |      0 | librispeech | comb_8   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.2329   | 1         |
| 103 | 0          |      6 |      0 | librispeech | comb_8   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.2329   | 1         |
| 104 | 0          |      7 |      0 | librispeech | comb_8   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.2329   | 1         |
| 105 | 0          |      8 |      0 | librispeech | comb_8   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.2329   | 1         |
| 106 | 0          |      4 |      0 | librispeech | comb_18  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.3901   | 1         |
| 107 | 0          |      5 |      0 | librispeech | comb_18  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.3901   | 1         |
| 108 | 0          |      6 |      0 | librispeech | comb_18  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.3901   | 1         |
| 109 | 0          |      7 |      0 | librispeech | comb_18  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.3901   | 1         |
| 110 | 0          |      8 |      0 | librispeech | comb_18  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  36.3901   | 1         |
| 111 | 0          |      4 |      0 | librispeech | comb_9   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  37.4106   | 1         |
| 112 | 0          |      5 |      0 | librispeech | comb_9   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  37.4106   | 1         |
| 113 | 0          |      6 |      0 | librispeech | comb_9   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  37.4106   | 1         |
| 114 | 0          |      7 |      0 | librispeech | comb_9   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  37.4106   | 1         |
| 115 | 0          |      8 |      0 | librispeech | comb_9   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  37.4106   | 1         |
| 116 | 0          |      4 |      0 | librispeech | comb_4   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  39.6853   | 1         |
| 117 | 0          |      5 |      0 | librispeech | comb_4   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  39.6853   | 1         |
| 118 | 0          |      6 |      0 | librispeech | comb_4   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  39.6853   | 1         |
| 119 | 0          |      7 |      0 | librispeech | comb_4   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  39.6853   | 1         |
| 120 | 0          |      8 |      0 | librispeech | comb_4   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  39.6853   | 1         |
| 121 | 0          |      4 |      0 | librispeech | comb_7   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  41.751    | 1         |
| 122 | 0          |      5 |      0 | librispeech | comb_7   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  41.751    | 1         |
| 123 | 0          |      6 |      0 | librispeech | comb_7   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  41.751    | 1         |
| 124 | 0          |      7 |      0 | librispeech | comb_7   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  41.751    | 1         |
| 125 | 0          |      8 |      0 | librispeech | comb_7   | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  41.751    | 1         |
| 126 | 0          |      4 |      0 | librispeech | comb_13  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  58.633    | 1         |
| 127 | 0          |      5 |      0 | librispeech | comb_13  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  58.633    | 1         |
| 128 | 0          |      6 |      0 | librispeech | comb_13  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  58.633    | 1         |
| 129 | 0          |      7 |      0 | librispeech | comb_13  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  58.633    | 1         |
| 130 | 0          |      8 |      0 | librispeech | comb_13  | wav2vec   | rnd_search_fb |             535.632 |             1606.42  |      0       |  58.633    | 1         |
| 131 | 0          |      4 |      0 | librispeech | comb_6   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.046749 | 1         |
| 132 | 0          |      5 |      0 | librispeech | comb_6   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.046749 | 1         |
| 133 | 0          |      6 |      0 | librispeech | comb_6   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.046749 | 1         |
| 134 | 0          |      7 |      0 | librispeech | comb_6   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.046749 | 1         |
| 135 | 0          |      8 |      0 | librispeech | comb_6   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.046749 | 1         |
| 136 | 0          |      4 |      0 | librispeech | comb_3   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.048292 | 1         |
| 137 | 0          |      5 |      0 | librispeech | comb_3   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.048292 | 1         |
| 138 | 0          |      6 |      0 | librispeech | comb_3   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.048292 | 1         |
| 139 | 0          |      7 |      0 | librispeech | comb_3   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.048292 | 1         |
| 140 | 0          |      8 |      0 | librispeech | comb_3   | wav2vec   | rnd_search_fb |             368.001 |             1610.61  |      0       |   0.048292 | 1         |
| 141 | 0          |      8 |      0 | librispeech | comb_12  | wav2vec   | rnd_search_fb |             658.018 |             4800.38  |      0       |  24.9109   | 0.0239712 |
| 142 | 0          |      6 |      0 | librispeech | comb_12  | wav2vec   | rnd_search_fb |             658.018 |             4800.38  |      0       |  25.1266   | 0.0236817 |
| 143 | 0          |      7 |      0 | librispeech | comb_12  | wav2vec   | rnd_search_fb |             658.018 |             4800.38  |      0       |  25.2215   | 0.0237246 |
| 144 | 0          |      4 |      0 | librispeech | comb_12  | wav2vec   | rnd_search_fb |             658.018 |             4800.38  |      0       |  25.7262   | 0.0270506 |
| 145 | 0          |      5 |      0 | librispeech | comb_12  | wav2vec   | rnd_search_fb |             658.018 |             4800.38  |      0       |  26.2994   | 0.0236872 |
| 151 | 0          |      8 |      0 | librispeech | comb_16  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  36.1914   | 0.0251431 |
| 152 | 0          |      7 |      0 | librispeech | comb_11  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  36.7064   | 0.024284  |
| 153 | 0          |      5 |      0 | librispeech | comb_11  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  37.2182   | 0.027052  |
| 154 | 0          |      6 |      0 | librispeech | comb_11  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  37.6211   | 0.0256052 |
| 155 | 0          |      8 |      0 | librispeech | comb_1   | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  37.9466   | 0.024387  |
| 156 | 0          |      4 |      0 | librispeech | comb_11  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  38.1018   | 0.0757624 |
| 157 | 0          |      8 |      0 | librispeech | comb_11  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  38.4852   | 0.0240484 |
| 158 | 0          |      7 |      0 | librispeech | comb_1   | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  38.4902   | 0.0243312 |
| 159 | 0          |      8 |      0 | librispeech | comb_10  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  38.5202   | 0.0240618 |
| 160 | 0          |      4 |      0 | librispeech | comb_17  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  39.5709   | 0.0250124 |
| 161 | 0          |      5 |      0 | librispeech | comb_17  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  40.2873   | 0.023422  |
| 162 | 0          |      8 |      0 | librispeech | comb_5   | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  40.6256   | 0.0245899 |
| 163 | 0          |      8 |      0 | librispeech | comb_17  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  41.145    | 0.0238758 |
| 164 | 0          |      7 |      0 | librispeech | comb_17  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  41.8237   | 0.02419   |
| 165 | 0          |      6 |      0 | librispeech | comb_17  | wav2vec   | rnd_search_fb |             658.907 |             4802.48  |      0       |  41.9697   | 0.0233385 |
| 167 | 0          |      4 |      0 | imagenet    | comb_15  | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  44.2916   | 0         |
| 168 | 0          |      5 |      0 | imagenet    | comb_15  | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  44.2916   | 0         |
| 169 | 0          |      6 |      0 | imagenet    | comb_15  | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  44.2916   | 0         |
| 170 | 0          |      7 |      0 | imagenet    | comb_15  | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  44.2916   | 0         |
| 171 | 0          |      8 |      0 | imagenet    | comb_15  | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  44.2916   | 0         |
| 172 | 0          |      4 |      0 | imagenet    | comb_2   | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  45.3892   | 0         |
| 173 | 0          |      5 |      0 | imagenet    | comb_2   | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  45.3892   | 0         |
| 174 | 0          |      6 |      0 | imagenet    | comb_2   | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  45.3892   | 0         |
| 175 | 0          |      7 |      0 | imagenet    | comb_2   | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  45.3892   | 0         |
| 176 | 0          |      8 |      0 | imagenet    | comb_2   | vit       | rnd_search_fb |             356.939 |              511.705 |      0       |  45.3892   | 0         |
| 177 | 0.801644   |      8 |      0 | imagenet    | comb_12  | vit       | rnd_search_fb |             357.432 |              511.705 |      0       |  31.3142   | 0         |
| 178 | 0.805755   |      6 |      0 | imagenet    | comb_12  | vit       | rnd_search_fb |             357.432 |              511.705 |      0       |  34.3495   | 0         |
| 179 | 0.799589   |      5 |      0 | imagenet    | comb_12  | vit       | rnd_search_fb |             357.432 |              511.705 |      0       |  35.4297   | 0         |
| 180 | 0.790339   |      4 |      0 | imagenet    | comb_12  | vit       | rnd_search_fb |             357.432 |              511.705 |      0       |  35.7784   | 0         |
| 181 | 0.799589   |      7 |      0 | imagenet    | comb_12  | vit       | rnd_search_fb |             357.432 |              511.705 |      0       |  36.6503   | 0         |
| 187 | 0          |      4 |      0 | imagenet    | comb_8   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  49.9335   | 0         |
| 188 | 0          |      5 |      0 | imagenet    | comb_8   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  49.9335   | 0         |
| 189 | 0          |      6 |      0 | imagenet    | comb_8   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  49.9335   | 0         |
| 190 | 0          |      7 |      0 | imagenet    | comb_8   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  49.9335   | 0         |
| 191 | 0          |      8 |      0 | imagenet    | comb_8   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  49.9335   | 0         |
| 192 | 0          |      4 |      0 | imagenet    | comb_9   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  51.6652   | 0         |
| 193 | 0          |      5 |      0 | imagenet    | comb_9   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  51.6652   | 0         |
| 194 | 0          |      6 |      0 | imagenet    | comb_9   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  51.6652   | 0         |
| 195 | 0          |      7 |      0 | imagenet    | comb_9   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  51.6652   | 0         |
| 196 | 0          |      8 |      0 | imagenet    | comb_9   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  51.6652   | 0         |
| 197 | 0          |      4 |      0 | imagenet    | comb_18  | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  63.991    | 0         |
| 198 | 0          |      5 |      0 | imagenet    | comb_18  | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  63.991    | 0         |
| 199 | 0          |      6 |      0 | imagenet    | comb_18  | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  63.991    | 0         |
| 200 | 0          |      7 |      0 | imagenet    | comb_18  | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  63.991    | 0         |
| 201 | 0          |      8 |      0 | imagenet    | comb_18  | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  63.991    | 0         |
| 202 | 0          |      4 |      0 | imagenet    | comb_4   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  64.4618   | 0         |
| 203 | 0          |      5 |      0 | imagenet    | comb_4   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  64.4618   | 0         |
| 204 | 0          |      4 |      0 | imagenet    | comb_7   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  72.3094   | 0         |
| 205 | 0          |      5 |      0 | imagenet    | comb_7   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  72.3094   | 0         |
| 206 | 0          |      6 |      0 | imagenet    | comb_7   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  72.3094   | 0         |
| 207 | 0          |      7 |      0 | imagenet    | comb_7   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  72.3094   | 0         |
| 208 | 0          |      8 |      0 | imagenet    | comb_7   | vit       | rnd_search_fb |             357.832 |              511.705 |      0       |  72.3094   | 0         |
| 209 | 0.181818   |      4 |      0 | imagenet    | comb_16  | vit       | rnd_search_fb |             357.843 |              511.705 |      0       |  57.6218   | 0         |
| 210 | 0.255319   |      4 |      0 | imagenet    | comb_11  | vit       | rnd_search_fb |             357.851 |              511.705 |      0       |  52.5498   | 0         |
| 211 | 0          |      4 |      0 | imagenet    | comb_13  | vit       | rnd_search_fb |             378.804 |              511.705 |      0       |  83.1314   | 0         |
| 212 | 0          |      5 |      0 | imagenet    | comb_13  | vit       | rnd_search_fb |             378.804 |              511.705 |      0       |  83.1314   | 0         |
| 213 | 0          |      6 |      0 | imagenet    | comb_13  | vit       | rnd_search_fb |             378.804 |              511.705 |      0       |  83.1314   | 0         |
| 214 | 0          |      7 |      0 | imagenet    | comb_13  | vit       | rnd_search_fb |             378.804 |              511.705 |      0       |  83.1314   | 0         |
| 215 | 0          |      8 |      0 | imagenet    | comb_13  | vit       | rnd_search_fb |             378.804 |              511.705 |      0       |  83.1314   | 0         |
| 216 | 0          |      4 |      0 | imagenet    | comb_6   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.084355 | 0         |
| 217 | 0          |      5 |      0 | imagenet    | comb_6   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.084355 | 0         |
| 218 | 0          |      6 |      0 | imagenet    | comb_6   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.084355 | 0         |
| 219 | 0          |      7 |      0 | imagenet    | comb_6   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.084355 | 0         |
| 220 | 0          |      8 |      0 | imagenet    | comb_6   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.084355 | 0         |
| 221 | 0          |      4 |      0 | imagenet    | comb_3   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.088266 | 0         |
| 222 | 0          |      5 |      0 | imagenet    | comb_3   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.088266 | 0         |
| 223 | 0          |      6 |      0 | imagenet    | comb_3   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.088266 | 0         |
| 224 | 0          |      7 |      0 | imagenet    | comb_3   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.088266 | 0         |
| 225 | 0          |      8 |      0 | imagenet    | comb_3   | vit       | rnd_search_fb |             328.369 |              513.802 |      0       |   0.088266 | 0         |
| 226 | 0.793422   |      4 |      0 | imagenet    | comb_10  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  47.722    | 0         |
| 227 | 0.801644   |      7 |      0 | imagenet    | comb_10  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  49.9275   | 0         |
| 228 | 0.801644   |      8 |      0 | imagenet    | comb_1   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  51.6153   | 0         |
| 229 | 0.797533   |      5 |      0 | imagenet    | comb_1   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  51.9632   | 0         |
| 230 | 0.802672   |      7 |      0 | imagenet    | comb_11  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  51.9731   | 0         |
| 231 | 0.800617   |      6 |      0 | imagenet    | comb_1   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  52.8922   | 0         |
| 232 | 0.788284   |      4 |      0 | imagenet    | comb_1   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  53.7947   | 0         |
| 233 | 0.800617   |      6 |      0 | imagenet    | comb_11  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  53.8132   | 0         |
| 234 | 0.802672   |      8 |      0 | imagenet    | comb_16  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  53.8751   | 0         |
| 235 | 0.801644   |      8 |      0 | imagenet    | comb_10  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  54.1192   | 0         |
| 236 | 0.79445    |      4 |      0 | imagenet    | comb_17  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  54.1424   | 0         |
| 237 | 0.800617   |      5 |      0 | imagenet    | comb_10  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  54.7218   | 0         |
| 238 | 0.800617   |      6 |      0 | imagenet    | comb_16  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  54.8055   | 0         |
| 239 | 0.793422   |      4 |      0 | imagenet    | comb_5   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  55.4379   | 0         |
| 240 | 0.802672   |      6 |      0 | imagenet    | comb_17  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  58.794    | 0         |
| 241 | 0.800617   |      8 |      0 | imagenet    | comb_17  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  58.9743   | 0         |
| 242 | 0.797533   |      7 |      0 | imagenet    | comb_1   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  58.977    | 0         |
| 243 | 0.804728   |      6 |      0 | imagenet    | comb_10  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  58.9931   | 0         |
| 244 | 0.661871   |      5 |      0 | imagenet    | comb_11  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  59.0954   | 0         |
| 245 | 0.784173   |      6 |      0 | imagenet    | comb_4   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  59.2244   | 0         |
| 246 | 0.800617   |      7 |      0 | imagenet    | comb_5   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  60.5984   | 0         |
| 247 | 0.801644   |      8 |      0 | imagenet    | comb_11  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  61.8881   | 0         |
| 248 | 0.789311   |      5 |      0 | imagenet    | comb_16  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  61.8899   | 0         |
| 249 | 0.8037     |      8 |      0 | imagenet    | comb_4   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  62.5027   | 0         |
| 250 | 0.801644   |      8 |      0 | imagenet    | comb_5   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  63.7316   | 0         |
| 251 | 0.797533   |      5 |      0 | imagenet    | comb_17  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  63.9553   | 0         |
| 252 | 0.800617   |      7 |      0 | imagenet    | comb_16  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  65.236    | 0         |
| 253 | 0.800617   |      7 |      0 | imagenet    | comb_17  | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  65.4468   | 0         |
| 254 | 0.801644   |      7 |      0 | imagenet    | comb_4   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  65.785    | 0         |
| 255 | 0.804728   |      6 |      0 | imagenet    | comb_5   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  66.5692   | 0         |
| 256 | 0.801644   |      5 |      0 | imagenet    | comb_5   | vit       | rnd_search_fb |             358.325 |              513.802 |      0       |  68.2392   | 0         |
| 258 | 0          |      4 |      0 | wikitext    | comb_2   | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.30216 |  39.7982   | 0         |
| 259 | 0          |      5 |      0 | wikitext    | comb_2   | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.30216 |  39.7982   | 0         |
| 260 | 0          |      6 |      0 | wikitext    | comb_2   | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.30216 |  39.7982   | 0         |
| 261 | 0          |      7 |      0 | wikitext    | comb_2   | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.30216 |  39.7982   | 0         |
| 262 | 0          |      8 |      0 | wikitext    | comb_2   | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.30216 |  39.7982   | 0         |
| 263 | 0          |      4 |      0 | wikitext    | comb_15  | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.10931 |  45.6019   | 0         |
| 264 | 0          |      5 |      0 | wikitext    | comb_15  | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.10931 |  45.6019   | 0         |
| 265 | 0          |      6 |      0 | wikitext    | comb_15  | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.10931 |  45.6019   | 0         |
| 266 | 0          |      7 |      0 | wikitext    | comb_15  | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.10931 |  45.6019   | 0         |
| 267 | 0          |      8 |      0 | wikitext    | comb_15  | tinyllama | rnd_search_fb |            1897.66  |             2149.58  |      1.10931 |  45.6019   | 0         |
| 268 | 0.378588   |      6 |      0 | wikitext    | comb_12  | tinyllama | rnd_search_fb |            1898.13  |             2149.58  |      6.50013 |  33.5088   | 0         |
| 269 | 0.377136   |      8 |      0 | wikitext    | comb_12  | tinyllama | rnd_search_fb |            1898.13  |             2149.58  |      6.60597 |  33.8606   | 0         |
| 270 | 0.346977   |      4 |      0 | wikitext    | comb_12  | tinyllama | rnd_search_fb |            1898.13  |             2149.58  |      7.64424 |  35.6067   | 0         |
| 271 | 0.368018   |      5 |      0 | wikitext    | comb_12  | tinyllama | rnd_search_fb |            1898.13  |             2149.58  |      6.96525 |  36.4698   | 0         |
| 272 | 0.376528   |      7 |      0 | wikitext    | comb_12  | tinyllama | rnd_search_fb |            1898.13  |             2149.58  |      6.65895 |  46.1502   | 0         |
| 278 | 0          |      4 |      0 | wikitext    | comb_18  | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11405 |  50.6508   | 0         |
| 279 | 0          |      5 |      0 | wikitext    | comb_18  | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11405 |  50.6508   | 0         |
| 280 | 0          |      6 |      0 | wikitext    | comb_18  | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11405 |  50.6508   | 0         |
| 281 | 0          |      7 |      0 | wikitext    | comb_18  | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11405 |  50.6508   | 0         |
| 282 | 0          |      8 |      0 | wikitext    | comb_18  | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11405 |  50.6508   | 0         |
| 283 | 0          |      4 |      0 | wikitext    | comb_9   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11087 |  52.4707   | 0         |
| 284 | 0          |      5 |      0 | wikitext    | comb_9   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11087 |  52.4707   | 0         |
| 285 | 0          |      6 |      0 | wikitext    | comb_9   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11087 |  52.4707   | 0         |
| 286 | 0          |      7 |      0 | wikitext    | comb_9   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.11087 |  52.4707   | 0         |
| 287 | 0          |      4 |      0 | wikitext    | comb_7   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.10931 |  56.7622   | 0         |
| 288 | 0          |      5 |      0 | wikitext    | comb_7   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.10931 |  56.7622   | 0         |
| 289 | 0          |      6 |      0 | wikitext    | comb_7   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.10931 |  56.7622   | 0         |
| 290 | 0          |      7 |      0 | wikitext    | comb_7   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.10931 |  56.7622   | 0         |
| 291 | 0          |      8 |      0 | wikitext    | comb_7   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.10931 |  56.7622   | 0         |
| 292 | 0          |      4 |      0 | wikitext    | comb_4   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12218 |  58.1608   | 0         |
| 293 | 0          |      5 |      0 | wikitext    | comb_4   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12218 |  58.1608   | 0         |
| 294 | 0          |      6 |      0 | wikitext    | comb_4   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12218 |  58.1608   | 0         |
| 295 | 0          |      4 |      0 | wikitext    | comb_8   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12126 |  58.9466   | 0         |
| 296 | 0          |      5 |      0 | wikitext    | comb_8   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12126 |  58.9466   | 0         |
| 297 | 0          |      6 |      0 | wikitext    | comb_8   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12126 |  58.9466   | 0         |
| 298 | 0          |      7 |      0 | wikitext    | comb_8   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12126 |  58.9466   | 0         |
| 299 | 0          |      8 |      0 | wikitext    | comb_8   | tinyllama | rnd_search_fb |            1899.49  |             2151.68  |      1.12126 |  58.9466   | 0         |
| 300 | 0.374468   |      7 |      0 | wikitext    | comb_1   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.72473 |  51.0243   | 0         |
| 301 | 0.376393   |      6 |      0 | wikitext    | comb_16  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.53486 |  51.9556   | 0         |
| 302 | 0.377744   |      6 |      0 | wikitext    | comb_10  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.51426 |  52.128    | 0         |
| 303 | 0.353158   |      4 |      0 | wikitext    | comb_11  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.58887 |  52.2249   | 0         |
| 304 | 0.377136   |      8 |      0 | wikitext    | comb_1   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.59568 |  52.4283   | 0         |
| 305 | 0.367612   |      5 |      0 | wikitext    | comb_1   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.00729 |  52.7485   | 0         |
| 306 | 0.377136   |      8 |      0 | wikitext    | comb_10  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.6008  |  52.8776   | 0         |
| 307 | 0.374772   |      7 |      0 | wikitext    | comb_16  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.70789 |  53.0598   | 0         |
| 308 | 0.379095   |      6 |      0 | wikitext    | comb_1   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.47186 |  53.3507   | 0         |
| 309 | 0.366869   |      5 |      0 | wikitext    | comb_16  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.05432 |  53.4823   | 0         |
| 310 | 0.237454   |      8 |      0 | wikitext    | comb_9   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |     12.7286  |  53.4971   | 0         |
| 311 | 0.375549   |      7 |      0 | wikitext    | comb_11  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.70331 |  53.6893   | 0         |
| 312 | 0.355792   |      4 |      0 | wikitext    | comb_1   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.46239 |  53.7004   | 0         |
| 313 | 0.379568   |      6 |      0 | wikitext    | comb_11  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.50579 |  53.8934   | 0         |
| 314 | 0.367173   |      5 |      0 | wikitext    | comb_11  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.05181 |  54.0947   | 0         |
| 315 | 0.374772   |      8 |      0 | wikitext    | comb_16  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.59244 |  54.3638   | 0         |
| 316 | 0.352178   |      4 |      0 | wikitext    | comb_16  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.54703 |  54.4805   | 0         |
| 317 | 0.368896   |      5 |      0 | wikitext    | comb_10  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.9587  |  54.8214   | 0         |
| 318 | 0.37923    |      6 |      0 | wikitext    | comb_17  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.56876 |  55.8665   | 0         |
| 319 | 0.345998   |      4 |      0 | wikitext    | comb_10  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.69133 |  57.0069   | 0         |
| 320 | 0.348801   |      4 |      0 | wikitext    | comb_17  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.56815 |  57.5693   | 0         |
| 321 | 0.37717    |      8 |      0 | wikitext    | comb_17  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.60404 |  57.683    | 0         |
| 322 | 0.377204   |      8 |      0 | wikitext    | comb_11  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.58678 |  57.9013   | 0         |
| 323 | 0.0696724  |      7 |      0 | wikitext    | comb_4   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |     40.4398  |  58.8127   | 0         |
| 324 | 0.369368   |      5 |      0 | wikitext    | comb_17  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.89862 |  58.8285   | 0         |
| 325 | 0.348024   |      8 |      0 | wikitext    | comb_4   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.78407 |  58.8786   | 0         |
| 326 | 0.346336   |      4 |      0 | wikitext    | comb_5   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      7.63147 |  58.949    | 0         |
| 327 | 0.375211   |      7 |      0 | wikitext    | comb_17  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.67773 |  59.3916   | 0         |
| 328 | 0.375785   |      7 |      0 | wikitext    | comb_5   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.66621 |  59.7562   | 0         |
| 329 | 0.378082   |      6 |      0 | wikitext    | comb_5   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.58056 |  59.9521   | 0         |
| 330 | 0.368625   |      5 |      0 | wikitext    | comb_5   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.9619  |  61.9145   | 0         |
| 331 | 0.376697   |      7 |      0 | wikitext    | comb_10  | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.66434 |  68.0669   | 0         |
| 332 | 0.377102   |      8 |      0 | wikitext    | comb_5   | tinyllama | rnd_search_fb |            1899.96  |             2151.68  |      6.59289 |  78.7615   | 0         |
| 333 | 0          |      4 |      0 | wikitext    | comb_6   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.12599 |   0.46943  | 0         |
| 334 | 0          |      5 |      0 | wikitext    | comb_6   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.12599 |   0.46943  | 0         |
| 335 | 0          |      6 |      0 | wikitext    | comb_6   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.12599 |   0.46943  | 0         |
| 336 | 0          |      7 |      0 | wikitext    | comb_6   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.12599 |   0.46943  | 0         |
| 337 | 0          |      8 |      0 | wikitext    | comb_6   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.12599 |   0.46943  | 0         |
| 338 | 0          |      4 |      0 | wikitext    | comb_3   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.11559 |   0.475494 | 0         |
| 339 | 0          |      5 |      0 | wikitext    | comb_3   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.11559 |   0.475494 | 0         |
| 340 | 0          |      6 |      0 | wikitext    | comb_3   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.11559 |   0.475494 | 0         |
| 341 | 0          |      7 |      0 | wikitext    | comb_3   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.11559 |   0.475494 | 0         |
| 342 | 0          |      8 |      0 | wikitext    | comb_3   | tinyllama | rnd_search_fb |            1383.27  |             2478.83  |      1.11559 |   0.475494 | 0         |
| 343 | 0          |      4 |      0 | wikitext    | comb_13  | tinyllama | rnd_search_fb |            2227.17  |             2738.88  |      1.10931 |  99.2691   | 0         |
| 344 | 0          |      5 |      0 | wikitext    | comb_13  | tinyllama | rnd_search_fb |            2227.17  |             2738.88  |      1.10931 |  99.2691   | 0         |
| 345 | 0          |      6 |      0 | wikitext    | comb_13  | tinyllama | rnd_search_fb |            2227.17  |             2738.88  |      1.10931 |  99.2691   | 0         |
| 346 | 0          |      7 |      0 | wikitext    | comb_13  | tinyllama | rnd_search_fb |            2227.17  |             2738.88  |      1.10931 |  99.2691   | 0         |
| 347 | 0          |      8 |      0 | wikitext    | comb_13  | tinyllama | rnd_search_fb |            2227.17  |             2738.88  |      1.10931 |  99.2691   | 0         |
| 349 | 0          |      4 |      0 | wikitext    | comb_2   | opt       | rnd_search_fb |             669.688 |              861.929 |      1.10369 |  40.3493   | 0         |
| 350 | 0          |      5 |      0 | wikitext    | comb_2   | opt       | rnd_search_fb |             669.688 |              861.929 |      1.10369 |  40.3493   | 0         |
| 351 | 0          |      6 |      0 | wikitext    | comb_2   | opt       | rnd_search_fb |             669.688 |              861.929 |      1.10369 |  40.3493   | 0         |
| 352 | 0          |      7 |      0 | wikitext    | comb_2   | opt       | rnd_search_fb |             669.688 |              861.929 |      1.10369 |  40.3493   | 0         |
| 353 | 0          |      8 |      0 | wikitext    | comb_2   | opt       | rnd_search_fb |             669.688 |              861.929 |      1.10369 |  40.3493   | 0         |
| 354 | 0          |      4 |      0 | wikitext    | comb_15  | opt       | rnd_search_fb |             669.688 |              861.929 |      1.11433 |  44.0884   | 0         |
| 355 | 0          |      5 |      0 | wikitext    | comb_15  | opt       | rnd_search_fb |             669.688 |              861.929 |      1.11433 |  44.0884   | 0         |
| 356 | 0          |      6 |      0 | wikitext    | comb_15  | opt       | rnd_search_fb |             669.688 |              861.929 |      1.11433 |  44.0884   | 0         |
| 357 | 0          |      7 |      0 | wikitext    | comb_15  | opt       | rnd_search_fb |             669.688 |              861.929 |      1.11433 |  44.0884   | 0         |
| 358 | 0          |      8 |      0 | wikitext    | comb_15  | opt       | rnd_search_fb |             669.688 |              861.929 |      1.11433 |  44.0884   | 0         |
| 359 | 0.324823   |      8 |      0 | wikitext    | comb_12  | opt       | rnd_search_fb |             670.159 |              861.929 |      7.91657 |  30.4897   | 0         |
| 360 | 0.324654   |      7 |      0 | wikitext    | comb_12  | opt       | rnd_search_fb |             670.159 |              861.929 |      7.90525 |  32.927    | 0         |
| 361 | 0.32131    |      6 |      0 | wikitext    | comb_12  | opt       | rnd_search_fb |             670.159 |              861.929 |      7.80169 |  33.9233   | 0         |
| 362 | 0.289497   |      4 |      0 | wikitext    | comb_12  | opt       | rnd_search_fb |             670.159 |              861.929 |      8.90269 |  33.9586   | 0         |
| 363 | 0.316988   |      5 |      0 | wikitext    | comb_12  | opt       | rnd_search_fb |             670.159 |              861.929 |      8.22323 |  35.2882   | 0         |
| 369 | 0          |      4 |      0 | wikitext    | comb_18  | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11651 |  54.4969   | 0         |
| 370 | 0          |      5 |      0 | wikitext    | comb_18  | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11651 |  54.4969   | 0         |
| 371 | 0          |      6 |      0 | wikitext    | comb_18  | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11651 |  54.4969   | 0         |
| 372 | 0          |      7 |      0 | wikitext    | comb_18  | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11651 |  54.4969   | 0         |
| 373 | 0          |      8 |      0 | wikitext    | comb_18  | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11651 |  54.4969   | 0         |
| 374 | 0          |      4 |      0 | wikitext    | comb_8   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11234 |  55.7899   | 0         |
| 375 | 0          |      5 |      0 | wikitext    | comb_8   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11234 |  55.7899   | 0         |
| 376 | 0          |      6 |      0 | wikitext    | comb_8   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11234 |  55.7899   | 0         |
| 377 | 0          |      7 |      0 | wikitext    | comb_8   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11234 |  55.7899   | 0         |
| 378 | 0          |      8 |      0 | wikitext    | comb_8   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11234 |  55.7899   | 0         |
| 379 | 0          |      4 |      0 | wikitext    | comb_7   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11433 |  57.4776   | 0         |
| 380 | 0          |      5 |      0 | wikitext    | comb_7   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11433 |  57.4776   | 0         |
| 381 | 0          |      6 |      0 | wikitext    | comb_7   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11433 |  57.4776   | 0         |
| 382 | 0          |      7 |      0 | wikitext    | comb_7   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11433 |  57.4776   | 0         |
| 383 | 0          |      8 |      0 | wikitext    | comb_7   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11433 |  57.4776   | 0         |
| 384 | 0          |      4 |      0 | wikitext    | comb_4   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.13228 |  57.5719   | 0         |
| 385 | 0          |      5 |      0 | wikitext    | comb_4   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.13228 |  57.5719   | 0         |
| 386 | 0          |      6 |      0 | wikitext    | comb_4   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.13228 |  57.5719   | 0         |
| 387 | 0          |      4 |      0 | wikitext    | comb_9   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11683 |  60.9339   | 0         |
| 388 | 0          |      5 |      0 | wikitext    | comb_9   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11683 |  60.9339   | 0         |
| 389 | 0          |      6 |      0 | wikitext    | comb_9   | opt       | rnd_search_fb |             670.982 |              861.929 |      1.11683 |  60.9339   | 0         |
| 390 | 0.0487528  |      7 |      0 | wikitext    | comb_9   | opt       | rnd_search_fb |             671.014 |              861.929 |      1.44571 |  48.9739   | 0         |
| 391 | 0.324924   |      8 |      0 | wikitext    | comb_1   | opt       | rnd_search_fb |             671.453 |              861.929 |      7.91629 |  46.8759   | 0         |
| 392 | 0.324012   |      8 |      0 | wikitext    | comb_10  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.92595 |  47.8434   | 0         |
| 393 | 0.324553   |      8 |      0 | wikitext    | comb_11  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.92482 |  48.1176   | 0         |
| 394 | 0.320095   |      6 |      0 | wikitext    | comb_11  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.80238 |  50.8744   | 0         |
| 395 | 0.324553   |      8 |      0 | wikitext    | comb_16  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.92518 |  51.8665   | 0         |
| 396 | 0.319959   |      6 |      0 | wikitext    | comb_16  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.80423 |  52.3585   | 0         |
| 397 | 0.290138   |      4 |      0 | wikitext    | comb_1   | opt       | rnd_search_fb |             671.453 |              861.929 |      8.93921 |  52.9156   | 0         |
| 398 | 0.318338   |      5 |      0 | wikitext    | comb_10  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.22127 |  53.1748   | 0         |
| 399 | 0.257616   |      8 |      0 | wikitext    | comb_9   | opt       | rnd_search_fb |             671.453 |              861.929 |     11.4123  |  53.4042   | 0         |
| 400 | 0.317258   |      5 |      0 | wikitext    | comb_11  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.28078 |  53.7667   | 0         |
| 401 | 0.320669   |      6 |      0 | wikitext    | comb_1   | opt       | rnd_search_fb |             671.453 |              861.929 |      7.79784 |  54.5581   | 0         |
| 402 | 0.320635   |      6 |      0 | wikitext    | comb_17  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.83196 |  55.0072   | 0         |
| 403 | 0.325329   |      7 |      0 | wikitext    | comb_16  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.92644 |  55.4604   | 0         |
| 404 | 0.321445   |      6 |      0 | wikitext    | comb_10  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.8178  |  56.4493   | 0         |
| 405 | 0.325329   |      7 |      0 | wikitext    | comb_11  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.93133 |  56.8978   | 0         |
| 406 | 0.317089   |      5 |      0 | wikitext    | comb_16  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.28163 |  57.1492   | 0         |
| 407 | 0.323978   |      8 |      0 | wikitext    | comb_5   | opt       | rnd_search_fb |             671.453 |              861.929 |      7.92484 |  57.1568   | 0         |
| 408 | 0.321344   |      6 |      0 | wikitext    | comb_5   | opt       | rnd_search_fb |             671.453 |              861.929 |      7.82519 |  58.2108   | 0         |
| 409 | 0.293381   |      4 |      0 | wikitext    | comb_10  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.88813 |  58.443    | 0         |
| 410 | 0.324958   |      7 |      0 | wikitext    | comb_10  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.91121 |  58.505    | 0         |
| 411 | 0.317427   |      5 |      0 | wikitext    | comb_17  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.18992 |  58.7847   | 0         |
| 412 | 0.291185   |      4 |      0 | wikitext    | comb_11  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.94418 |  60.0673   | 0         |
| 413 | 0.289362   |      4 |      0 | wikitext    | comb_17  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.98371 |  60.3179   | 0         |
| 414 | 0.324282   |      7 |      0 | wikitext    | comb_1   | opt       | rnd_search_fb |             671.453 |              861.929 |      7.91812 |  60.6793   | 0         |
| 415 | 0.30564    |      8 |      0 | wikitext    | comb_4   | opt       | rnd_search_fb |             671.453 |              861.929 |      8.45907 |  61.3388   | 0         |
| 416 | 0.293414   |      4 |      0 | wikitext    | comb_5   | opt       | rnd_search_fb |             671.453 |              861.929 |      8.89842 |  61.5244   | 0         |
| 417 | 0.318305   |      5 |      0 | wikitext    | comb_5   | opt       | rnd_search_fb |             671.453 |              861.929 |      8.22212 |  61.5555   | 0         |
| 418 | 0.318136   |      5 |      0 | wikitext    | comb_1   | opt       | rnd_search_fb |             671.453 |              861.929 |      8.25183 |  61.8305   | 0         |
| 419 | 0.325059   |      7 |      0 | wikitext    | comb_5   | opt       | rnd_search_fb |             671.453 |              861.929 |      7.9093  |  64.2754   | 0         |
| 420 | 0.324519   |      8 |      0 | wikitext    | comb_17  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.9184  |  66.3536   | 0         |
| 421 | 0.121682   |      7 |      0 | wikitext    | comb_4   | opt       | rnd_search_fb |             671.453 |              861.929 |     23.913   |  69.634    | 0         |
| 422 | 0.290375   |      4 |      0 | wikitext    | comb_16  | opt       | rnd_search_fb |             671.453 |              861.929 |      8.95579 |  74.635    | 0         |
| 423 | 0.324586   |      7 |      0 | wikitext    | comb_17  | opt       | rnd_search_fb |             671.453 |              861.929 |      7.9136  | 101.632    | 0         |
| 424 | 0          |      4 |      0 | wikitext    | comb_3   | opt       | rnd_search_fb |             477.735 |              968.884 |      1.11338 |   0.345899 | 0         |
| 425 | 0          |      5 |      0 | wikitext    | comb_3   | opt       | rnd_search_fb |             477.735 |              968.884 |      1.11338 |   0.345899 | 0         |
| 426 | 0          |      6 |      0 | wikitext    | comb_3   | opt       | rnd_search_fb |             477.735 |              968.884 |      1.11338 |   0.345899 | 0         |
| 427 | 0          |      7 |      0 | wikitext    | comb_3   | opt       | rnd_search_fb |             477.735 |              968.884 |      1.11338 |   0.345899 | 0         |
| 428 | 0          |      8 |      0 | wikitext    | comb_3   | opt       | rnd_search_fb |             477.735 |              968.884 |      1.11338 |   0.345899 | 0         |
| 429 | 0          |      4 |      0 | wikitext    | comb_6   | opt       | rnd_search_fb |             477.737 |              968.884 |      1.11204 |   0.323173 | 0         |
| 430 | 0          |      5 |      0 | wikitext    | comb_6   | opt       | rnd_search_fb |             477.737 |              968.884 |      1.11204 |   0.323173 | 0         |
| 431 | 0          |      6 |      0 | wikitext    | comb_6   | opt       | rnd_search_fb |             477.737 |              968.884 |      1.11204 |   0.323173 | 0         |
| 432 | 0          |      7 |      0 | wikitext    | comb_6   | opt       | rnd_search_fb |             477.737 |              968.884 |      1.11204 |   0.323173 | 0         |
| 433 | 0          |      8 |      0 | wikitext    | comb_6   | opt       | rnd_search_fb |             477.737 |              968.884 |      1.11204 |   0.323173 | 0         |
| 434 | 0          |      4 |      0 | wikitext    | comb_13  | opt       | rnd_search_fb |             799.678 |             1071.64  |      1.11433 | 100.233    | 0         |
| 435 | 0          |      5 |      0 | wikitext    | comb_13  | opt       | rnd_search_fb |             799.678 |             1071.64  |      1.11433 | 100.233    | 0         |
| 436 | 0          |      6 |      0 | wikitext    | comb_13  | opt       | rnd_search_fb |             799.678 |             1071.64  |      1.11433 | 100.233    | 0         |
| 437 | 0          |      7 |      0 | wikitext    | comb_13  | opt       | rnd_search_fb |             799.678 |             1071.64  |      1.11433 | 100.233    | 0         |
| 438 | 0          |      8 |      0 | wikitext    | comb_13  | opt       | rnd_search_fb |             799.678 |             1071.64  |      1.11433 | 100.233    | 0         |
|   0 | 0.296589   |      4 |      0 | wikitext    | ao_woq   | opt       | fixed         |             268.126 |              740.295 |      8.76863 |  16.7133   | 0         |
|   1 | 0.324519   |      7 |      0 | wikitext    | woq      | opt       | fixed         |             670.235 |              765.46  |      7.90544 |  21.3463   | 0         |
|   2 | 0.324856   |      8 |      0 | wikitext    | woq      | opt       | fixed         |             670.235 |              782.238 |      7.91611 |  21.1467   | 0         |
|   3 | 0.317021   |      5 |      0 | wikitext    | woq      | opt       | fixed         |             670.235 |              782.238 |      8.22268 |  21.3186   | 0         |
|   4 | 0.292401   |      4 |      0 | wikitext    | woq      | opt       | fixed         |             670.235 |              786.432 |      8.90344 |  21.2314   | 0         |
|   5 | 0.321074   |      6 |      0 | wikitext    | woq      | opt       | fixed         |             670.235 |              786.432 |      7.80569 |  21.3255   | 0         |
|   6 | 0.324823   |      8 |      0 | wikitext    | ao_woq   | opt       | fixed         |             580.072 |              834.666 |      7.91657 |  15.2915   | 0         |
|   7 | 0.324384   |     32 |      0 | wikitext    | base     | opt       | ----          |            1359.4   |             1402.99  |      7.93495 |  10.2598   | 0         |
|   8 | 0.371564   |      4 |      0 | wikitext    | ao_woq   | phi       | fixed         |            1922.31  |             2797.6   |      5.99482 |  29.9169   | 0         |
|   9 | 0.380446   |      8 |      0 | wikitext    | ao_woq   | phi       | fixed         |            3885.39  |             4292.87  |      5.90714 |  28.8445   | 0         |
|  10 | 0.353799   |      4 |      0 | wikitext    | woq      | phi       | fixed         |            4394.58  |             4697.62  |      6.48361 |  62.2568   | 0         |
|  11 | 0.378757   |      7 |      0 | wikitext    | woq      | phi       | fixed         |            4394.58  |             4697.62  |      5.90345 |  62.2607   | 0         |
|  12 | 0.375279   |      5 |      0 | wikitext    | woq      | phi       | fixed         |            4394.58  |             4697.62  |      5.96907 |  62.2856   | 0         |
|  13 | 0.38048    |      8 |      0 | wikitext    | woq      | phi       | fixed         |            4394.58  |             4697.62  |      5.90678 |  62.3092   | 0         |
|  14 | 0.378116   |      6 |      0 | wikitext    | woq      | phi       | fixed         |            4394.58  |             4697.62  |      5.9501  |  62.3718   | 0         |
|  15 | 0.380513   |     32 |      0 | wikitext    | base     | phi       | ----          |           11335.5   |            11370.8   |      5.90955 |  18.803    | 0         |
|  16 | 0.364167   |      4 |      0 | wikitext    | ao_woq   | tinyllama | fixed         |             741.693 |              866.124 |      7.04309 |  21.5042   | 0         |
|  17 | 0.377136   |      8 |      0 | wikitext    | ao_woq   | tinyllama | fixed         |            1631.73  |             1988.1   |      6.60597 |  19.2898   | 0         |
|  18 | 0.378588   |      6 |      0 | wikitext    | woq      | tinyllama | fixed         |            1898.21  |             2151.68  |      6.50158 |  19.6707   | 0         |
|  19 | 0.346977   |      4 |      0 | wikitext    | woq      | tinyllama | fixed         |            1898.21  |             2151.68  |      7.65536 |  20.1313   | 0         |
|  20 | 0.376326   |      7 |      0 | wikitext    | woq      | tinyllama | fixed         |            1898.21  |             2151.68  |      6.66335 |  20.2208   | 0         |
|  21 | 0.377271   |      8 |      0 | wikitext    | woq      | tinyllama | fixed         |            1898.21  |             2151.68  |      6.60481 |  20.2719   | 0         |
|  22 | 0.367612   |      5 |      0 | wikitext    | woq      | tinyllama | fixed         |            1898.21  |             2151.68  |      6.9663  |  20.4532   | 0         |
|  23 | 0.378149   |     32 |      0 | wikitext    | base     | tinyllama | ----          |            4470.55  |             4485.81  |      6.59595 |  14.7146   | 0         |
|  24 | 0.799589   |      7 |      0 | imagenet    | woq      | vit       | fixed         |             356.539 |              406.847 |      0       |  72.9158   | 0         |
|  25 | 0.789311   |      4 |      0 | imagenet    | woq      | vit       | fixed         |             356.539 |              406.847 |      0       |  79.4596   | 0         |
|  26 | 0.799589   |      5 |      0 | imagenet    | woq      | vit       | fixed         |             356.539 |              406.847 |      0       |  80.7554   | 0         |
|  27 | 0.801644   |      8 |      0 | imagenet    | woq      | vit       | fixed         |             356.539 |              406.847 |      0       |  84.7714   | 0         |
|  28 | 0.805755   |      6 |      0 | imagenet    | woq      | vit       | fixed         |             356.539 |              406.847 |      0       |  87.5057   | 0         |
|  29 | 0.795478   |      4 |      0 | imagenet    | ao_woq   | vit       | fixed         |             179.948 |              503.316 |      0       |  84.2359   | 0         |
|  30 | 0.801644   |      8 |      0 | imagenet    | ao_woq   | vit       | fixed         |             341.33  |              511.705 |      0       |  70.2195   | 0         |
|  31 | 0.800617   |     32 |      0 | imagenet    | base     | vit       | ----          |            1235.24  |             1256.19  |      0       |  10.0727   | 0         |
|  32 | 0          |      4 |      0 | librispeech | woq      | wav2vec   | fixed         |             658.093 |             4764.73  |      0       |  25.2541   | 0.0268908 |
|  33 | 0          |      7 |      0 | librispeech | woq      | wav2vec   | fixed         |             658.093 |             4764.73  |      0       |  87.3119   | 0.023608  |
|  34 | 0          |      5 |      0 | librispeech | woq      | wav2vec   | fixed         |             658.093 |             4764.73  |      0       |  88.9496   | 0.0237326 |
|  35 | 0          |      8 |      0 | librispeech | woq      | wav2vec   | fixed         |             658.093 |             4764.73  |      0       |  93.2529   | 0.0239495 |
|  36 | 0          |      6 |      0 | librispeech | woq      | wav2vec   | fixed         |             658.093 |             4764.73  |      0       |  96.3179   | 0.0234031 |
|  37 | 0          |      8 |      0 | librispeech | ao_woq   | wav2vec   | fixed         |             658.018 |             4890.56  |      0       |  94.8747   | 0.0239712 |
|  38 | 0          |     32 |      0 | librispeech | base     | wav2vec   | ----          |            1564.77  |             5620.37  |      0       |  18.114    | 0.0239474 |
|  39 | 0.427795   |      4 |      0 | wikitext    | ao_woq   | llama3    | fixed         |            5542.36  |             7163.87  |      5.35836 |  39.0506   | 0         |
|  40 | 0.443735   |      8 |      0 | wikitext    | ao_woq   | llama3    | fixed         |           12110.4   |            14040.4   |      5.20864 |  52.3616   | 0         |
|  41 | 0.37977    |      4 |      0 | wikitext    | woq      | llama3    | fixed         |           14179.3   |            15367.9   |      6.16325 |  95.6158   | 0         |
|  42 | 0.435562   |      5 |      0 | wikitext    | woq      | llama3    | fixed         |           14179.3   |            15367.9   |      5.44896 |  95.6183   | 0         |
|  43 | 0.44387    |      8 |      0 | wikitext    | woq      | llama3    | fixed         |           14179.3   |            15367.9   |      5.20824 |  95.6533   | 0         |
|  44 | 0.440932   |      6 |      0 | wikitext    | woq      | llama3    | fixed         |           14179.3   |            15367.9   |      5.1933  |  95.7322   | 0         |
|  45 | 0.442756   |      7 |      0 | wikitext    | woq      | llama3    | fixed         |           14179.3   |            15367.9   |      5.24889 |  95.8957   | 0         |
|  46 | 0.443668   |     32 |      0 | wikitext    | base     | llama3    | ----          |           33003.5   |            33156     |      5.22381 |  26.7037   | 0         |