shubhambaid commited on
Commit
bca2e11
·
verified ·
1 Parent(s): 4f1c524

Raw evaluation results: coverage audits, token budget sweep, 17-config sensitivity sweep, n=300 head-to-head

Browse files
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - benchmark-results
5
+ - quantization
6
+ - vision-language
7
+ - mlx
8
+ ---
9
+
10
+ # lfm2vl-lab — raw evaluation results
11
+
12
+ Every number behind [`lfm2vl-lab`](https://github.com/shubhambaid/lfm2vl-lab), a
13
+ component-wise quantization and edge-inference study of
14
+ [`LiquidAI/LFM2.5-VL-3B`](https://huggingface.co/LiquidAI/LFM2.5-VL-3B) on Apple Silicon
15
+ (M4 Pro, 24 GB).
16
+
17
+ Published separately from the code so the numbers stay citable and diffable on their own.
18
+ Weights in that study are ephemeral by design — converted, evaluated, recorded, deleted.
19
+ These JSON files are what survives.
20
+
21
+ ## Files
22
+
23
+ | file | what it holds |
24
+ |---|---|
25
+ | `coverage_audit_gs64.json` | per-module quantizability audit at group size 64 |
26
+ | `coverage_audit_by_group_size.json` | the same at group size 32 / 64 / 128 |
27
+ | `uniform4_coverage_verified.json` | coverage read back from saved weights |
28
+ | `published_quant_survey.json` | 56 published LFM2-VL/LFM2.5-VL quant repos, checked for vision-tower quantization |
29
+ | `token_budget_sweep.json` | accuracy and latency vs `max_image_tokens`, 3 tasks × 4 budgets |
30
+ | `baseline_bf16_n200_t512.json` | bf16 baseline vs Liquid's published figures |
31
+ | `sweep_component_sensitivity.json` | 17 quantization configs × 5 benchmarks |
32
+ | `head_to_head_n300.json` | 5 decision-relevant configs at n=300 with 95% CIs |
33
+
34
+ ## Headline findings
35
+
36
+ **The vision token budget matters more than quantization.** ScreenSpot-v2 moves from
37
+ 53.0 to 79.0 by changing `max_image_tokens` from the default 256 to 512 — and falls
38
+ back to 70.0 at 1024. Non-monotonic, and the optimum is task-dependent (512 for screens
39
+ and documents, 256 for natural images).
40
+
41
+ **Component sensitivity is flat.** Across 17 configs, nothing measurably degrades at 6 or
42
+ 8 bits on any component. The only clear loser is uniform 4-bit, the one config pushing
43
+ the vision tower to 4 bits — lower on 5 of 5 benchmarks.
44
+
45
+ **A third of the vision tower cannot be quantized.** SigLIP2 shape-optimized has
46
+ `intermediate_size = 4304` (16 × 269, 269 prime), so all 27 `mlp.fc2` modules are
47
+ skipped at every standard group size — silently, with no warning.
48
+
49
+ **No published quant touches the vision tower.** Of 56 repos surveyed, including
50
+ LiquidAI's own MLX releases, none has a `vision_tower` quantization entry.
51
+
52
+ ## Caveats
53
+
54
+ n is 100–300 per benchmark, so 95% CIs run ±4 to ±5 points. Differences smaller than
55
+ that are not claims. Single machine, single seed (0), `mlx-vlm==0.6.13`.
baseline_bf16_n200_t512.json ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "meta": {
3
+ "model": "LiquidAI/LFM2.5-VL-3B",
4
+ "precision": "bf16",
5
+ "n": 200,
6
+ "seed": 0,
7
+ "max_image_tokens": 512
8
+ },
9
+ "results": [
10
+ {
11
+ "benchmark": "docvqa",
12
+ "n": 200,
13
+ "seed": 0,
14
+ "max_image_tokens": 512,
15
+ "max_num_patches": 2048,
16
+ "accuracy": 0.8641,
17
+ "accuracy_given_parsed": 0.8641,
18
+ "parse_failure_rate": 0.0,
19
+ "n_parsed": 200,
20
+ "published": 91.1,
21
+ "wall_seconds": 262.8,
22
+ "parse_failure_samples": []
23
+ },
24
+ {
25
+ "benchmark": "chartqa",
26
+ "n": 200,
27
+ "seed": 0,
28
+ "max_image_tokens": 512,
29
+ "max_num_patches": 2048,
30
+ "accuracy": 0.835,
31
+ "accuracy_given_parsed": 0.835,
32
+ "parse_failure_rate": 0.0,
33
+ "n_parsed": 200,
34
+ "published": 81.3,
35
+ "wall_seconds": 211.0,
36
+ "parse_failure_samples": []
37
+ },
38
+ {
39
+ "benchmark": "ocrbench",
40
+ "n": 200,
41
+ "seed": 0,
42
+ "max_image_tokens": 512,
43
+ "max_num_patches": 2048,
44
+ "accuracy": 0.815,
45
+ "accuracy_given_parsed": 0.815,
46
+ "parse_failure_rate": 0.0,
47
+ "n_parsed": 200,
48
+ "published": 84.2,
49
+ "wall_seconds": 220.2,
50
+ "parse_failure_samples": []
51
+ },
52
+ {
53
+ "benchmark": "screenspot_v2",
54
+ "n": 200,
55
+ "seed": 0,
56
+ "max_image_tokens": 512,
57
+ "max_num_patches": 2048,
58
+ "accuracy": 0.705,
59
+ "accuracy_given_parsed": 0.7085,
60
+ "parse_failure_rate": 0.005,
61
+ "n_parsed": 199,
62
+ "published": 80.7,
63
+ "wall_seconds": 344.5,
64
+ "parse_failure_samples": [
65
+ "[0.67, 0.1, 710, 740, 140]"
66
+ ]
67
+ },
68
+ {
69
+ "benchmark": "refcoco",
70
+ "n": 200,
71
+ "seed": 0,
72
+ "max_image_tokens": 512,
73
+ "max_num_patches": 2048,
74
+ "accuracy": 0.845,
75
+ "accuracy_given_parsed": 0.845,
76
+ "parse_failure_rate": 0.0,
77
+ "n_parsed": 200,
78
+ "published": 87.9,
79
+ "wall_seconds": 236.3,
80
+ "parse_failure_samples": []
81
+ }
82
+ ]
83
+ }
coverage_audit_by_group_size.json ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "LiquidAI/LFM2.5-VL-3B",
3
+ "by_group_size": {
4
+ "32": {
5
+ "vision": {
6
+ "modules_total": 164,
7
+ "modules_quantizable": 137,
8
+ "modules_skipped": 27,
9
+ "params_total": 412250112,
10
+ "params_quantizable": 278378496,
11
+ "param_coverage": 0.6753,
12
+ "group_size": 32
13
+ },
14
+ "projector": {
15
+ "modules_total": 2,
16
+ "modules_quantizable": 2,
17
+ "modules_skipped": 0,
18
+ "params_total": 13631488,
19
+ "params_quantizable": 13631488,
20
+ "param_coverage": 1.0,
21
+ "group_size": 32
22
+ },
23
+ "backbone": {
24
+ "modules_total": 166,
25
+ "modules_quantizable": 166,
26
+ "modules_skipped": 0,
27
+ "params_total": 2434793472,
28
+ "params_quantizable": 2434793472,
29
+ "param_coverage": 1.0,
30
+ "group_size": 32
31
+ },
32
+ "embed_head": {
33
+ "modules_total": 1,
34
+ "modules_quantizable": 1,
35
+ "modules_skipped": 0,
36
+ "params_total": 262144000,
37
+ "params_quantizable": 262144000,
38
+ "param_coverage": 1.0,
39
+ "group_size": 32
40
+ }
41
+ },
42
+ "64": {
43
+ "vision": {
44
+ "modules_total": 164,
45
+ "modules_quantizable": 137,
46
+ "modules_skipped": 27,
47
+ "params_total": 412250112,
48
+ "params_quantizable": 278378496,
49
+ "param_coverage": 0.6753,
50
+ "group_size": 64
51
+ },
52
+ "projector": {
53
+ "modules_total": 2,
54
+ "modules_quantizable": 2,
55
+ "modules_skipped": 0,
56
+ "params_total": 13631488,
57
+ "params_quantizable": 13631488,
58
+ "param_coverage": 1.0,
59
+ "group_size": 64
60
+ },
61
+ "backbone": {
62
+ "modules_total": 166,
63
+ "modules_quantizable": 166,
64
+ "modules_skipped": 0,
65
+ "params_total": 2434793472,
66
+ "params_quantizable": 2434793472,
67
+ "param_coverage": 1.0,
68
+ "group_size": 64
69
+ },
70
+ "embed_head": {
71
+ "modules_total": 1,
72
+ "modules_quantizable": 1,
73
+ "modules_skipped": 0,
74
+ "params_total": 262144000,
75
+ "params_quantizable": 262144000,
76
+ "param_coverage": 1.0,
77
+ "group_size": 64
78
+ }
79
+ },
80
+ "128": {
81
+ "vision": {
82
+ "modules_total": 164,
83
+ "modules_quantizable": 137,
84
+ "modules_skipped": 27,
85
+ "params_total": 412250112,
86
+ "params_quantizable": 278378496,
87
+ "param_coverage": 0.6753,
88
+ "group_size": 128
89
+ },
90
+ "projector": {
91
+ "modules_total": 2,
92
+ "modules_quantizable": 2,
93
+ "modules_skipped": 0,
94
+ "params_total": 13631488,
95
+ "params_quantizable": 13631488,
96
+ "param_coverage": 1.0,
97
+ "group_size": 128
98
+ },
99
+ "backbone": {
100
+ "modules_total": 166,
101
+ "modules_quantizable": 166,
102
+ "modules_skipped": 0,
103
+ "params_total": 2434793472,
104
+ "params_quantizable": 2434793472,
105
+ "param_coverage": 1.0,
106
+ "group_size": 128
107
+ },
108
+ "embed_head": {
109
+ "modules_total": 1,
110
+ "modules_quantizable": 1,
111
+ "modules_skipped": 0,
112
+ "params_total": 262144000,
113
+ "params_quantizable": 262144000,
114
+ "param_coverage": 1.0,
115
+ "group_size": 128
116
+ }
117
+ }
118
+ }
119
+ }
coverage_audit_gs64.json ADDED
@@ -0,0 +1,2707 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "group_size": 64,
3
+ "by_component": {
4
+ "vision": {
5
+ "modules_total": 164,
6
+ "modules_quantizable": 137,
7
+ "modules_skipped": 27,
8
+ "params_total": 412250112,
9
+ "params_quantizable": 278378496,
10
+ "param_coverage": 0.6753,
11
+ "group_size": 64
12
+ },
13
+ "projector": {
14
+ "modules_total": 2,
15
+ "modules_quantizable": 2,
16
+ "modules_skipped": 0,
17
+ "params_total": 13631488,
18
+ "params_quantizable": 13631488,
19
+ "param_coverage": 1.0,
20
+ "group_size": 64
21
+ },
22
+ "backbone": {
23
+ "modules_total": 166,
24
+ "modules_quantizable": 166,
25
+ "modules_skipped": 0,
26
+ "params_total": 2434793472,
27
+ "params_quantizable": 2434793472,
28
+ "param_coverage": 1.0,
29
+ "group_size": 64
30
+ },
31
+ "embed_head": {
32
+ "modules_total": 1,
33
+ "modules_quantizable": 1,
34
+ "modules_skipped": 0,
35
+ "params_total": 262144000,
36
+ "params_quantizable": 262144000,
37
+ "param_coverage": 1.0,
38
+ "group_size": 64
39
+ }
40
+ },
41
+ "modules": [
42
+ {
43
+ "path": "language_model.model.layers.29.feed_forward.w2",
44
+ "component": "backbone",
45
+ "out_features": 2048,
46
+ "in_features": 10752,
47
+ "params": 22020096,
48
+ "quantizable": true
49
+ },
50
+ {
51
+ "path": "language_model.model.layers.29.feed_forward.w3",
52
+ "component": "backbone",
53
+ "out_features": 10752,
54
+ "in_features": 2048,
55
+ "params": 22020096,
56
+ "quantizable": true
57
+ },
58
+ {
59
+ "path": "language_model.model.layers.29.feed_forward.w1",
60
+ "component": "backbone",
61
+ "out_features": 10752,
62
+ "in_features": 2048,
63
+ "params": 22020096,
64
+ "quantizable": true
65
+ },
66
+ {
67
+ "path": "language_model.model.layers.29.conv.out_proj",
68
+ "component": "backbone",
69
+ "out_features": 2048,
70
+ "in_features": 2048,
71
+ "params": 4194304,
72
+ "quantizable": true
73
+ },
74
+ {
75
+ "path": "language_model.model.layers.29.conv.in_proj",
76
+ "component": "backbone",
77
+ "out_features": 6144,
78
+ "in_features": 2048,
79
+ "params": 12582912,
80
+ "quantizable": true
81
+ },
82
+ {
83
+ "path": "language_model.model.layers.28.feed_forward.w2",
84
+ "component": "backbone",
85
+ "out_features": 2048,
86
+ "in_features": 10752,
87
+ "params": 22020096,
88
+ "quantizable": true
89
+ },
90
+ {
91
+ "path": "language_model.model.layers.28.feed_forward.w3",
92
+ "component": "backbone",
93
+ "out_features": 10752,
94
+ "in_features": 2048,
95
+ "params": 22020096,
96
+ "quantizable": true
97
+ },
98
+ {
99
+ "path": "language_model.model.layers.28.feed_forward.w1",
100
+ "component": "backbone",
101
+ "out_features": 10752,
102
+ "in_features": 2048,
103
+ "params": 22020096,
104
+ "quantizable": true
105
+ },
106
+ {
107
+ "path": "language_model.model.layers.28.conv.out_proj",
108
+ "component": "backbone",
109
+ "out_features": 2048,
110
+ "in_features": 2048,
111
+ "params": 4194304,
112
+ "quantizable": true
113
+ },
114
+ {
115
+ "path": "language_model.model.layers.28.conv.in_proj",
116
+ "component": "backbone",
117
+ "out_features": 6144,
118
+ "in_features": 2048,
119
+ "params": 12582912,
120
+ "quantizable": true
121
+ },
122
+ {
123
+ "path": "language_model.model.layers.27.feed_forward.w2",
124
+ "component": "backbone",
125
+ "out_features": 2048,
126
+ "in_features": 10752,
127
+ "params": 22020096,
128
+ "quantizable": true
129
+ },
130
+ {
131
+ "path": "language_model.model.layers.27.feed_forward.w3",
132
+ "component": "backbone",
133
+ "out_features": 10752,
134
+ "in_features": 2048,
135
+ "params": 22020096,
136
+ "quantizable": true
137
+ },
138
+ {
139
+ "path": "language_model.model.layers.27.feed_forward.w1",
140
+ "component": "backbone",
141
+ "out_features": 10752,
142
+ "in_features": 2048,
143
+ "params": 22020096,
144
+ "quantizable": true
145
+ },
146
+ {
147
+ "path": "language_model.model.layers.27.self_attn.out_proj",
148
+ "component": "backbone",
149
+ "out_features": 2048,
150
+ "in_features": 2048,
151
+ "params": 4194304,
152
+ "quantizable": true
153
+ },
154
+ {
155
+ "path": "language_model.model.layers.27.self_attn.v_proj",
156
+ "component": "backbone",
157
+ "out_features": 512,
158
+ "in_features": 2048,
159
+ "params": 1048576,
160
+ "quantizable": true
161
+ },
162
+ {
163
+ "path": "language_model.model.layers.27.self_attn.k_proj",
164
+ "component": "backbone",
165
+ "out_features": 512,
166
+ "in_features": 2048,
167
+ "params": 1048576,
168
+ "quantizable": true
169
+ },
170
+ {
171
+ "path": "language_model.model.layers.27.self_attn.q_proj",
172
+ "component": "backbone",
173
+ "out_features": 2048,
174
+ "in_features": 2048,
175
+ "params": 4194304,
176
+ "quantizable": true
177
+ },
178
+ {
179
+ "path": "language_model.model.layers.26.feed_forward.w2",
180
+ "component": "backbone",
181
+ "out_features": 2048,
182
+ "in_features": 10752,
183
+ "params": 22020096,
184
+ "quantizable": true
185
+ },
186
+ {
187
+ "path": "language_model.model.layers.26.feed_forward.w3",
188
+ "component": "backbone",
189
+ "out_features": 10752,
190
+ "in_features": 2048,
191
+ "params": 22020096,
192
+ "quantizable": true
193
+ },
194
+ {
195
+ "path": "language_model.model.layers.26.feed_forward.w1",
196
+ "component": "backbone",
197
+ "out_features": 10752,
198
+ "in_features": 2048,
199
+ "params": 22020096,
200
+ "quantizable": true
201
+ },
202
+ {
203
+ "path": "language_model.model.layers.26.conv.out_proj",
204
+ "component": "backbone",
205
+ "out_features": 2048,
206
+ "in_features": 2048,
207
+ "params": 4194304,
208
+ "quantizable": true
209
+ },
210
+ {
211
+ "path": "language_model.model.layers.26.conv.in_proj",
212
+ "component": "backbone",
213
+ "out_features": 6144,
214
+ "in_features": 2048,
215
+ "params": 12582912,
216
+ "quantizable": true
217
+ },
218
+ {
219
+ "path": "language_model.model.layers.25.feed_forward.w2",
220
+ "component": "backbone",
221
+ "out_features": 2048,
222
+ "in_features": 10752,
223
+ "params": 22020096,
224
+ "quantizable": true
225
+ },
226
+ {
227
+ "path": "language_model.model.layers.25.feed_forward.w3",
228
+ "component": "backbone",
229
+ "out_features": 10752,
230
+ "in_features": 2048,
231
+ "params": 22020096,
232
+ "quantizable": true
233
+ },
234
+ {
235
+ "path": "language_model.model.layers.25.feed_forward.w1",
236
+ "component": "backbone",
237
+ "out_features": 10752,
238
+ "in_features": 2048,
239
+ "params": 22020096,
240
+ "quantizable": true
241
+ },
242
+ {
243
+ "path": "language_model.model.layers.25.conv.out_proj",
244
+ "component": "backbone",
245
+ "out_features": 2048,
246
+ "in_features": 2048,
247
+ "params": 4194304,
248
+ "quantizable": true
249
+ },
250
+ {
251
+ "path": "language_model.model.layers.25.conv.in_proj",
252
+ "component": "backbone",
253
+ "out_features": 6144,
254
+ "in_features": 2048,
255
+ "params": 12582912,
256
+ "quantizable": true
257
+ },
258
+ {
259
+ "path": "language_model.model.layers.24.feed_forward.w2",
260
+ "component": "backbone",
261
+ "out_features": 2048,
262
+ "in_features": 10752,
263
+ "params": 22020096,
264
+ "quantizable": true
265
+ },
266
+ {
267
+ "path": "language_model.model.layers.24.feed_forward.w3",
268
+ "component": "backbone",
269
+ "out_features": 10752,
270
+ "in_features": 2048,
271
+ "params": 22020096,
272
+ "quantizable": true
273
+ },
274
+ {
275
+ "path": "language_model.model.layers.24.feed_forward.w1",
276
+ "component": "backbone",
277
+ "out_features": 10752,
278
+ "in_features": 2048,
279
+ "params": 22020096,
280
+ "quantizable": true
281
+ },
282
+ {
283
+ "path": "language_model.model.layers.24.self_attn.out_proj",
284
+ "component": "backbone",
285
+ "out_features": 2048,
286
+ "in_features": 2048,
287
+ "params": 4194304,
288
+ "quantizable": true
289
+ },
290
+ {
291
+ "path": "language_model.model.layers.24.self_attn.v_proj",
292
+ "component": "backbone",
293
+ "out_features": 512,
294
+ "in_features": 2048,
295
+ "params": 1048576,
296
+ "quantizable": true
297
+ },
298
+ {
299
+ "path": "language_model.model.layers.24.self_attn.k_proj",
300
+ "component": "backbone",
301
+ "out_features": 512,
302
+ "in_features": 2048,
303
+ "params": 1048576,
304
+ "quantizable": true
305
+ },
306
+ {
307
+ "path": "language_model.model.layers.24.self_attn.q_proj",
308
+ "component": "backbone",
309
+ "out_features": 2048,
310
+ "in_features": 2048,
311
+ "params": 4194304,
312
+ "quantizable": true
313
+ },
314
+ {
315
+ "path": "language_model.model.layers.23.feed_forward.w2",
316
+ "component": "backbone",
317
+ "out_features": 2048,
318
+ "in_features": 10752,
319
+ "params": 22020096,
320
+ "quantizable": true
321
+ },
322
+ {
323
+ "path": "language_model.model.layers.23.feed_forward.w3",
324
+ "component": "backbone",
325
+ "out_features": 10752,
326
+ "in_features": 2048,
327
+ "params": 22020096,
328
+ "quantizable": true
329
+ },
330
+ {
331
+ "path": "language_model.model.layers.23.feed_forward.w1",
332
+ "component": "backbone",
333
+ "out_features": 10752,
334
+ "in_features": 2048,
335
+ "params": 22020096,
336
+ "quantizable": true
337
+ },
338
+ {
339
+ "path": "language_model.model.layers.23.conv.out_proj",
340
+ "component": "backbone",
341
+ "out_features": 2048,
342
+ "in_features": 2048,
343
+ "params": 4194304,
344
+ "quantizable": true
345
+ },
346
+ {
347
+ "path": "language_model.model.layers.23.conv.in_proj",
348
+ "component": "backbone",
349
+ "out_features": 6144,
350
+ "in_features": 2048,
351
+ "params": 12582912,
352
+ "quantizable": true
353
+ },
354
+ {
355
+ "path": "language_model.model.layers.22.feed_forward.w2",
356
+ "component": "backbone",
357
+ "out_features": 2048,
358
+ "in_features": 10752,
359
+ "params": 22020096,
360
+ "quantizable": true
361
+ },
362
+ {
363
+ "path": "language_model.model.layers.22.feed_forward.w3",
364
+ "component": "backbone",
365
+ "out_features": 10752,
366
+ "in_features": 2048,
367
+ "params": 22020096,
368
+ "quantizable": true
369
+ },
370
+ {
371
+ "path": "language_model.model.layers.22.feed_forward.w1",
372
+ "component": "backbone",
373
+ "out_features": 10752,
374
+ "in_features": 2048,
375
+ "params": 22020096,
376
+ "quantizable": true
377
+ },
378
+ {
379
+ "path": "language_model.model.layers.22.conv.out_proj",
380
+ "component": "backbone",
381
+ "out_features": 2048,
382
+ "in_features": 2048,
383
+ "params": 4194304,
384
+ "quantizable": true
385
+ },
386
+ {
387
+ "path": "language_model.model.layers.22.conv.in_proj",
388
+ "component": "backbone",
389
+ "out_features": 6144,
390
+ "in_features": 2048,
391
+ "params": 12582912,
392
+ "quantizable": true
393
+ },
394
+ {
395
+ "path": "language_model.model.layers.21.feed_forward.w2",
396
+ "component": "backbone",
397
+ "out_features": 2048,
398
+ "in_features": 10752,
399
+ "params": 22020096,
400
+ "quantizable": true
401
+ },
402
+ {
403
+ "path": "language_model.model.layers.21.feed_forward.w3",
404
+ "component": "backbone",
405
+ "out_features": 10752,
406
+ "in_features": 2048,
407
+ "params": 22020096,
408
+ "quantizable": true
409
+ },
410
+ {
411
+ "path": "language_model.model.layers.21.feed_forward.w1",
412
+ "component": "backbone",
413
+ "out_features": 10752,
414
+ "in_features": 2048,
415
+ "params": 22020096,
416
+ "quantizable": true
417
+ },
418
+ {
419
+ "path": "language_model.model.layers.21.self_attn.out_proj",
420
+ "component": "backbone",
421
+ "out_features": 2048,
422
+ "in_features": 2048,
423
+ "params": 4194304,
424
+ "quantizable": true
425
+ },
426
+ {
427
+ "path": "language_model.model.layers.21.self_attn.v_proj",
428
+ "component": "backbone",
429
+ "out_features": 512,
430
+ "in_features": 2048,
431
+ "params": 1048576,
432
+ "quantizable": true
433
+ },
434
+ {
435
+ "path": "language_model.model.layers.21.self_attn.k_proj",
436
+ "component": "backbone",
437
+ "out_features": 512,
438
+ "in_features": 2048,
439
+ "params": 1048576,
440
+ "quantizable": true
441
+ },
442
+ {
443
+ "path": "language_model.model.layers.21.self_attn.q_proj",
444
+ "component": "backbone",
445
+ "out_features": 2048,
446
+ "in_features": 2048,
447
+ "params": 4194304,
448
+ "quantizable": true
449
+ },
450
+ {
451
+ "path": "language_model.model.layers.20.feed_forward.w2",
452
+ "component": "backbone",
453
+ "out_features": 2048,
454
+ "in_features": 10752,
455
+ "params": 22020096,
456
+ "quantizable": true
457
+ },
458
+ {
459
+ "path": "language_model.model.layers.20.feed_forward.w3",
460
+ "component": "backbone",
461
+ "out_features": 10752,
462
+ "in_features": 2048,
463
+ "params": 22020096,
464
+ "quantizable": true
465
+ },
466
+ {
467
+ "path": "language_model.model.layers.20.feed_forward.w1",
468
+ "component": "backbone",
469
+ "out_features": 10752,
470
+ "in_features": 2048,
471
+ "params": 22020096,
472
+ "quantizable": true
473
+ },
474
+ {
475
+ "path": "language_model.model.layers.20.conv.out_proj",
476
+ "component": "backbone",
477
+ "out_features": 2048,
478
+ "in_features": 2048,
479
+ "params": 4194304,
480
+ "quantizable": true
481
+ },
482
+ {
483
+ "path": "language_model.model.layers.20.conv.in_proj",
484
+ "component": "backbone",
485
+ "out_features": 6144,
486
+ "in_features": 2048,
487
+ "params": 12582912,
488
+ "quantizable": true
489
+ },
490
+ {
491
+ "path": "language_model.model.layers.19.feed_forward.w2",
492
+ "component": "backbone",
493
+ "out_features": 2048,
494
+ "in_features": 10752,
495
+ "params": 22020096,
496
+ "quantizable": true
497
+ },
498
+ {
499
+ "path": "language_model.model.layers.19.feed_forward.w3",
500
+ "component": "backbone",
501
+ "out_features": 10752,
502
+ "in_features": 2048,
503
+ "params": 22020096,
504
+ "quantizable": true
505
+ },
506
+ {
507
+ "path": "language_model.model.layers.19.feed_forward.w1",
508
+ "component": "backbone",
509
+ "out_features": 10752,
510
+ "in_features": 2048,
511
+ "params": 22020096,
512
+ "quantizable": true
513
+ },
514
+ {
515
+ "path": "language_model.model.layers.19.conv.out_proj",
516
+ "component": "backbone",
517
+ "out_features": 2048,
518
+ "in_features": 2048,
519
+ "params": 4194304,
520
+ "quantizable": true
521
+ },
522
+ {
523
+ "path": "language_model.model.layers.19.conv.in_proj",
524
+ "component": "backbone",
525
+ "out_features": 6144,
526
+ "in_features": 2048,
527
+ "params": 12582912,
528
+ "quantizable": true
529
+ },
530
+ {
531
+ "path": "language_model.model.layers.18.feed_forward.w2",
532
+ "component": "backbone",
533
+ "out_features": 2048,
534
+ "in_features": 10752,
535
+ "params": 22020096,
536
+ "quantizable": true
537
+ },
538
+ {
539
+ "path": "language_model.model.layers.18.feed_forward.w3",
540
+ "component": "backbone",
541
+ "out_features": 10752,
542
+ "in_features": 2048,
543
+ "params": 22020096,
544
+ "quantizable": true
545
+ },
546
+ {
547
+ "path": "language_model.model.layers.18.feed_forward.w1",
548
+ "component": "backbone",
549
+ "out_features": 10752,
550
+ "in_features": 2048,
551
+ "params": 22020096,
552
+ "quantizable": true
553
+ },
554
+ {
555
+ "path": "language_model.model.layers.18.conv.out_proj",
556
+ "component": "backbone",
557
+ "out_features": 2048,
558
+ "in_features": 2048,
559
+ "params": 4194304,
560
+ "quantizable": true
561
+ },
562
+ {
563
+ "path": "language_model.model.layers.18.conv.in_proj",
564
+ "component": "backbone",
565
+ "out_features": 6144,
566
+ "in_features": 2048,
567
+ "params": 12582912,
568
+ "quantizable": true
569
+ },
570
+ {
571
+ "path": "language_model.model.layers.17.feed_forward.w2",
572
+ "component": "backbone",
573
+ "out_features": 2048,
574
+ "in_features": 10752,
575
+ "params": 22020096,
576
+ "quantizable": true
577
+ },
578
+ {
579
+ "path": "language_model.model.layers.17.feed_forward.w3",
580
+ "component": "backbone",
581
+ "out_features": 10752,
582
+ "in_features": 2048,
583
+ "params": 22020096,
584
+ "quantizable": true
585
+ },
586
+ {
587
+ "path": "language_model.model.layers.17.feed_forward.w1",
588
+ "component": "backbone",
589
+ "out_features": 10752,
590
+ "in_features": 2048,
591
+ "params": 22020096,
592
+ "quantizable": true
593
+ },
594
+ {
595
+ "path": "language_model.model.layers.17.self_attn.out_proj",
596
+ "component": "backbone",
597
+ "out_features": 2048,
598
+ "in_features": 2048,
599
+ "params": 4194304,
600
+ "quantizable": true
601
+ },
602
+ {
603
+ "path": "language_model.model.layers.17.self_attn.v_proj",
604
+ "component": "backbone",
605
+ "out_features": 512,
606
+ "in_features": 2048,
607
+ "params": 1048576,
608
+ "quantizable": true
609
+ },
610
+ {
611
+ "path": "language_model.model.layers.17.self_attn.k_proj",
612
+ "component": "backbone",
613
+ "out_features": 512,
614
+ "in_features": 2048,
615
+ "params": 1048576,
616
+ "quantizable": true
617
+ },
618
+ {
619
+ "path": "language_model.model.layers.17.self_attn.q_proj",
620
+ "component": "backbone",
621
+ "out_features": 2048,
622
+ "in_features": 2048,
623
+ "params": 4194304,
624
+ "quantizable": true
625
+ },
626
+ {
627
+ "path": "language_model.model.layers.16.feed_forward.w2",
628
+ "component": "backbone",
629
+ "out_features": 2048,
630
+ "in_features": 10752,
631
+ "params": 22020096,
632
+ "quantizable": true
633
+ },
634
+ {
635
+ "path": "language_model.model.layers.16.feed_forward.w3",
636
+ "component": "backbone",
637
+ "out_features": 10752,
638
+ "in_features": 2048,
639
+ "params": 22020096,
640
+ "quantizable": true
641
+ },
642
+ {
643
+ "path": "language_model.model.layers.16.feed_forward.w1",
644
+ "component": "backbone",
645
+ "out_features": 10752,
646
+ "in_features": 2048,
647
+ "params": 22020096,
648
+ "quantizable": true
649
+ },
650
+ {
651
+ "path": "language_model.model.layers.16.conv.out_proj",
652
+ "component": "backbone",
653
+ "out_features": 2048,
654
+ "in_features": 2048,
655
+ "params": 4194304,
656
+ "quantizable": true
657
+ },
658
+ {
659
+ "path": "language_model.model.layers.16.conv.in_proj",
660
+ "component": "backbone",
661
+ "out_features": 6144,
662
+ "in_features": 2048,
663
+ "params": 12582912,
664
+ "quantizable": true
665
+ },
666
+ {
667
+ "path": "language_model.model.layers.15.feed_forward.w2",
668
+ "component": "backbone",
669
+ "out_features": 2048,
670
+ "in_features": 10752,
671
+ "params": 22020096,
672
+ "quantizable": true
673
+ },
674
+ {
675
+ "path": "language_model.model.layers.15.feed_forward.w3",
676
+ "component": "backbone",
677
+ "out_features": 10752,
678
+ "in_features": 2048,
679
+ "params": 22020096,
680
+ "quantizable": true
681
+ },
682
+ {
683
+ "path": "language_model.model.layers.15.feed_forward.w1",
684
+ "component": "backbone",
685
+ "out_features": 10752,
686
+ "in_features": 2048,
687
+ "params": 22020096,
688
+ "quantizable": true
689
+ },
690
+ {
691
+ "path": "language_model.model.layers.15.conv.out_proj",
692
+ "component": "backbone",
693
+ "out_features": 2048,
694
+ "in_features": 2048,
695
+ "params": 4194304,
696
+ "quantizable": true
697
+ },
698
+ {
699
+ "path": "language_model.model.layers.15.conv.in_proj",
700
+ "component": "backbone",
701
+ "out_features": 6144,
702
+ "in_features": 2048,
703
+ "params": 12582912,
704
+ "quantizable": true
705
+ },
706
+ {
707
+ "path": "language_model.model.layers.14.feed_forward.w2",
708
+ "component": "backbone",
709
+ "out_features": 2048,
710
+ "in_features": 10752,
711
+ "params": 22020096,
712
+ "quantizable": true
713
+ },
714
+ {
715
+ "path": "language_model.model.layers.14.feed_forward.w3",
716
+ "component": "backbone",
717
+ "out_features": 10752,
718
+ "in_features": 2048,
719
+ "params": 22020096,
720
+ "quantizable": true
721
+ },
722
+ {
723
+ "path": "language_model.model.layers.14.feed_forward.w1",
724
+ "component": "backbone",
725
+ "out_features": 10752,
726
+ "in_features": 2048,
727
+ "params": 22020096,
728
+ "quantizable": true
729
+ },
730
+ {
731
+ "path": "language_model.model.layers.14.conv.out_proj",
732
+ "component": "backbone",
733
+ "out_features": 2048,
734
+ "in_features": 2048,
735
+ "params": 4194304,
736
+ "quantizable": true
737
+ },
738
+ {
739
+ "path": "language_model.model.layers.14.conv.in_proj",
740
+ "component": "backbone",
741
+ "out_features": 6144,
742
+ "in_features": 2048,
743
+ "params": 12582912,
744
+ "quantizable": true
745
+ },
746
+ {
747
+ "path": "language_model.model.layers.13.feed_forward.w2",
748
+ "component": "backbone",
749
+ "out_features": 2048,
750
+ "in_features": 10752,
751
+ "params": 22020096,
752
+ "quantizable": true
753
+ },
754
+ {
755
+ "path": "language_model.model.layers.13.feed_forward.w3",
756
+ "component": "backbone",
757
+ "out_features": 10752,
758
+ "in_features": 2048,
759
+ "params": 22020096,
760
+ "quantizable": true
761
+ },
762
+ {
763
+ "path": "language_model.model.layers.13.feed_forward.w1",
764
+ "component": "backbone",
765
+ "out_features": 10752,
766
+ "in_features": 2048,
767
+ "params": 22020096,
768
+ "quantizable": true
769
+ },
770
+ {
771
+ "path": "language_model.model.layers.13.self_attn.out_proj",
772
+ "component": "backbone",
773
+ "out_features": 2048,
774
+ "in_features": 2048,
775
+ "params": 4194304,
776
+ "quantizable": true
777
+ },
778
+ {
779
+ "path": "language_model.model.layers.13.self_attn.v_proj",
780
+ "component": "backbone",
781
+ "out_features": 512,
782
+ "in_features": 2048,
783
+ "params": 1048576,
784
+ "quantizable": true
785
+ },
786
+ {
787
+ "path": "language_model.model.layers.13.self_attn.k_proj",
788
+ "component": "backbone",
789
+ "out_features": 512,
790
+ "in_features": 2048,
791
+ "params": 1048576,
792
+ "quantizable": true
793
+ },
794
+ {
795
+ "path": "language_model.model.layers.13.self_attn.q_proj",
796
+ "component": "backbone",
797
+ "out_features": 2048,
798
+ "in_features": 2048,
799
+ "params": 4194304,
800
+ "quantizable": true
801
+ },
802
+ {
803
+ "path": "language_model.model.layers.12.feed_forward.w2",
804
+ "component": "backbone",
805
+ "out_features": 2048,
806
+ "in_features": 10752,
807
+ "params": 22020096,
808
+ "quantizable": true
809
+ },
810
+ {
811
+ "path": "language_model.model.layers.12.feed_forward.w3",
812
+ "component": "backbone",
813
+ "out_features": 10752,
814
+ "in_features": 2048,
815
+ "params": 22020096,
816
+ "quantizable": true
817
+ },
818
+ {
819
+ "path": "language_model.model.layers.12.feed_forward.w1",
820
+ "component": "backbone",
821
+ "out_features": 10752,
822
+ "in_features": 2048,
823
+ "params": 22020096,
824
+ "quantizable": true
825
+ },
826
+ {
827
+ "path": "language_model.model.layers.12.conv.out_proj",
828
+ "component": "backbone",
829
+ "out_features": 2048,
830
+ "in_features": 2048,
831
+ "params": 4194304,
832
+ "quantizable": true
833
+ },
834
+ {
835
+ "path": "language_model.model.layers.12.conv.in_proj",
836
+ "component": "backbone",
837
+ "out_features": 6144,
838
+ "in_features": 2048,
839
+ "params": 12582912,
840
+ "quantizable": true
841
+ },
842
+ {
843
+ "path": "language_model.model.layers.11.feed_forward.w2",
844
+ "component": "backbone",
845
+ "out_features": 2048,
846
+ "in_features": 10752,
847
+ "params": 22020096,
848
+ "quantizable": true
849
+ },
850
+ {
851
+ "path": "language_model.model.layers.11.feed_forward.w3",
852
+ "component": "backbone",
853
+ "out_features": 10752,
854
+ "in_features": 2048,
855
+ "params": 22020096,
856
+ "quantizable": true
857
+ },
858
+ {
859
+ "path": "language_model.model.layers.11.feed_forward.w1",
860
+ "component": "backbone",
861
+ "out_features": 10752,
862
+ "in_features": 2048,
863
+ "params": 22020096,
864
+ "quantizable": true
865
+ },
866
+ {
867
+ "path": "language_model.model.layers.11.conv.out_proj",
868
+ "component": "backbone",
869
+ "out_features": 2048,
870
+ "in_features": 2048,
871
+ "params": 4194304,
872
+ "quantizable": true
873
+ },
874
+ {
875
+ "path": "language_model.model.layers.11.conv.in_proj",
876
+ "component": "backbone",
877
+ "out_features": 6144,
878
+ "in_features": 2048,
879
+ "params": 12582912,
880
+ "quantizable": true
881
+ },
882
+ {
883
+ "path": "language_model.model.layers.10.feed_forward.w2",
884
+ "component": "backbone",
885
+ "out_features": 2048,
886
+ "in_features": 10752,
887
+ "params": 22020096,
888
+ "quantizable": true
889
+ },
890
+ {
891
+ "path": "language_model.model.layers.10.feed_forward.w3",
892
+ "component": "backbone",
893
+ "out_features": 10752,
894
+ "in_features": 2048,
895
+ "params": 22020096,
896
+ "quantizable": true
897
+ },
898
+ {
899
+ "path": "language_model.model.layers.10.feed_forward.w1",
900
+ "component": "backbone",
901
+ "out_features": 10752,
902
+ "in_features": 2048,
903
+ "params": 22020096,
904
+ "quantizable": true
905
+ },
906
+ {
907
+ "path": "language_model.model.layers.10.conv.out_proj",
908
+ "component": "backbone",
909
+ "out_features": 2048,
910
+ "in_features": 2048,
911
+ "params": 4194304,
912
+ "quantizable": true
913
+ },
914
+ {
915
+ "path": "language_model.model.layers.10.conv.in_proj",
916
+ "component": "backbone",
917
+ "out_features": 6144,
918
+ "in_features": 2048,
919
+ "params": 12582912,
920
+ "quantizable": true
921
+ },
922
+ {
923
+ "path": "language_model.model.layers.9.feed_forward.w2",
924
+ "component": "backbone",
925
+ "out_features": 2048,
926
+ "in_features": 10752,
927
+ "params": 22020096,
928
+ "quantizable": true
929
+ },
930
+ {
931
+ "path": "language_model.model.layers.9.feed_forward.w3",
932
+ "component": "backbone",
933
+ "out_features": 10752,
934
+ "in_features": 2048,
935
+ "params": 22020096,
936
+ "quantizable": true
937
+ },
938
+ {
939
+ "path": "language_model.model.layers.9.feed_forward.w1",
940
+ "component": "backbone",
941
+ "out_features": 10752,
942
+ "in_features": 2048,
943
+ "params": 22020096,
944
+ "quantizable": true
945
+ },
946
+ {
947
+ "path": "language_model.model.layers.9.self_attn.out_proj",
948
+ "component": "backbone",
949
+ "out_features": 2048,
950
+ "in_features": 2048,
951
+ "params": 4194304,
952
+ "quantizable": true
953
+ },
954
+ {
955
+ "path": "language_model.model.layers.9.self_attn.v_proj",
956
+ "component": "backbone",
957
+ "out_features": 512,
958
+ "in_features": 2048,
959
+ "params": 1048576,
960
+ "quantizable": true
961
+ },
962
+ {
963
+ "path": "language_model.model.layers.9.self_attn.k_proj",
964
+ "component": "backbone",
965
+ "out_features": 512,
966
+ "in_features": 2048,
967
+ "params": 1048576,
968
+ "quantizable": true
969
+ },
970
+ {
971
+ "path": "language_model.model.layers.9.self_attn.q_proj",
972
+ "component": "backbone",
973
+ "out_features": 2048,
974
+ "in_features": 2048,
975
+ "params": 4194304,
976
+ "quantizable": true
977
+ },
978
+ {
979
+ "path": "language_model.model.layers.8.feed_forward.w2",
980
+ "component": "backbone",
981
+ "out_features": 2048,
982
+ "in_features": 10752,
983
+ "params": 22020096,
984
+ "quantizable": true
985
+ },
986
+ {
987
+ "path": "language_model.model.layers.8.feed_forward.w3",
988
+ "component": "backbone",
989
+ "out_features": 10752,
990
+ "in_features": 2048,
991
+ "params": 22020096,
992
+ "quantizable": true
993
+ },
994
+ {
995
+ "path": "language_model.model.layers.8.feed_forward.w1",
996
+ "component": "backbone",
997
+ "out_features": 10752,
998
+ "in_features": 2048,
999
+ "params": 22020096,
1000
+ "quantizable": true
1001
+ },
1002
+ {
1003
+ "path": "language_model.model.layers.8.conv.out_proj",
1004
+ "component": "backbone",
1005
+ "out_features": 2048,
1006
+ "in_features": 2048,
1007
+ "params": 4194304,
1008
+ "quantizable": true
1009
+ },
1010
+ {
1011
+ "path": "language_model.model.layers.8.conv.in_proj",
1012
+ "component": "backbone",
1013
+ "out_features": 6144,
1014
+ "in_features": 2048,
1015
+ "params": 12582912,
1016
+ "quantizable": true
1017
+ },
1018
+ {
1019
+ "path": "language_model.model.layers.7.feed_forward.w2",
1020
+ "component": "backbone",
1021
+ "out_features": 2048,
1022
+ "in_features": 10752,
1023
+ "params": 22020096,
1024
+ "quantizable": true
1025
+ },
1026
+ {
1027
+ "path": "language_model.model.layers.7.feed_forward.w3",
1028
+ "component": "backbone",
1029
+ "out_features": 10752,
1030
+ "in_features": 2048,
1031
+ "params": 22020096,
1032
+ "quantizable": true
1033
+ },
1034
+ {
1035
+ "path": "language_model.model.layers.7.feed_forward.w1",
1036
+ "component": "backbone",
1037
+ "out_features": 10752,
1038
+ "in_features": 2048,
1039
+ "params": 22020096,
1040
+ "quantizable": true
1041
+ },
1042
+ {
1043
+ "path": "language_model.model.layers.7.conv.out_proj",
1044
+ "component": "backbone",
1045
+ "out_features": 2048,
1046
+ "in_features": 2048,
1047
+ "params": 4194304,
1048
+ "quantizable": true
1049
+ },
1050
+ {
1051
+ "path": "language_model.model.layers.7.conv.in_proj",
1052
+ "component": "backbone",
1053
+ "out_features": 6144,
1054
+ "in_features": 2048,
1055
+ "params": 12582912,
1056
+ "quantizable": true
1057
+ },
1058
+ {
1059
+ "path": "language_model.model.layers.6.feed_forward.w2",
1060
+ "component": "backbone",
1061
+ "out_features": 2048,
1062
+ "in_features": 10752,
1063
+ "params": 22020096,
1064
+ "quantizable": true
1065
+ },
1066
+ {
1067
+ "path": "language_model.model.layers.6.feed_forward.w3",
1068
+ "component": "backbone",
1069
+ "out_features": 10752,
1070
+ "in_features": 2048,
1071
+ "params": 22020096,
1072
+ "quantizable": true
1073
+ },
1074
+ {
1075
+ "path": "language_model.model.layers.6.feed_forward.w1",
1076
+ "component": "backbone",
1077
+ "out_features": 10752,
1078
+ "in_features": 2048,
1079
+ "params": 22020096,
1080
+ "quantizable": true
1081
+ },
1082
+ {
1083
+ "path": "language_model.model.layers.6.conv.out_proj",
1084
+ "component": "backbone",
1085
+ "out_features": 2048,
1086
+ "in_features": 2048,
1087
+ "params": 4194304,
1088
+ "quantizable": true
1089
+ },
1090
+ {
1091
+ "path": "language_model.model.layers.6.conv.in_proj",
1092
+ "component": "backbone",
1093
+ "out_features": 6144,
1094
+ "in_features": 2048,
1095
+ "params": 12582912,
1096
+ "quantizable": true
1097
+ },
1098
+ {
1099
+ "path": "language_model.model.layers.5.feed_forward.w2",
1100
+ "component": "backbone",
1101
+ "out_features": 2048,
1102
+ "in_features": 10752,
1103
+ "params": 22020096,
1104
+ "quantizable": true
1105
+ },
1106
+ {
1107
+ "path": "language_model.model.layers.5.feed_forward.w3",
1108
+ "component": "backbone",
1109
+ "out_features": 10752,
1110
+ "in_features": 2048,
1111
+ "params": 22020096,
1112
+ "quantizable": true
1113
+ },
1114
+ {
1115
+ "path": "language_model.model.layers.5.feed_forward.w1",
1116
+ "component": "backbone",
1117
+ "out_features": 10752,
1118
+ "in_features": 2048,
1119
+ "params": 22020096,
1120
+ "quantizable": true
1121
+ },
1122
+ {
1123
+ "path": "language_model.model.layers.5.self_attn.out_proj",
1124
+ "component": "backbone",
1125
+ "out_features": 2048,
1126
+ "in_features": 2048,
1127
+ "params": 4194304,
1128
+ "quantizable": true
1129
+ },
1130
+ {
1131
+ "path": "language_model.model.layers.5.self_attn.v_proj",
1132
+ "component": "backbone",
1133
+ "out_features": 512,
1134
+ "in_features": 2048,
1135
+ "params": 1048576,
1136
+ "quantizable": true
1137
+ },
1138
+ {
1139
+ "path": "language_model.model.layers.5.self_attn.k_proj",
1140
+ "component": "backbone",
1141
+ "out_features": 512,
1142
+ "in_features": 2048,
1143
+ "params": 1048576,
1144
+ "quantizable": true
1145
+ },
1146
+ {
1147
+ "path": "language_model.model.layers.5.self_attn.q_proj",
1148
+ "component": "backbone",
1149
+ "out_features": 2048,
1150
+ "in_features": 2048,
1151
+ "params": 4194304,
1152
+ "quantizable": true
1153
+ },
1154
+ {
1155
+ "path": "language_model.model.layers.4.feed_forward.w2",
1156
+ "component": "backbone",
1157
+ "out_features": 2048,
1158
+ "in_features": 10752,
1159
+ "params": 22020096,
1160
+ "quantizable": true
1161
+ },
1162
+ {
1163
+ "path": "language_model.model.layers.4.feed_forward.w3",
1164
+ "component": "backbone",
1165
+ "out_features": 10752,
1166
+ "in_features": 2048,
1167
+ "params": 22020096,
1168
+ "quantizable": true
1169
+ },
1170
+ {
1171
+ "path": "language_model.model.layers.4.feed_forward.w1",
1172
+ "component": "backbone",
1173
+ "out_features": 10752,
1174
+ "in_features": 2048,
1175
+ "params": 22020096,
1176
+ "quantizable": true
1177
+ },
1178
+ {
1179
+ "path": "language_model.model.layers.4.conv.out_proj",
1180
+ "component": "backbone",
1181
+ "out_features": 2048,
1182
+ "in_features": 2048,
1183
+ "params": 4194304,
1184
+ "quantizable": true
1185
+ },
1186
+ {
1187
+ "path": "language_model.model.layers.4.conv.in_proj",
1188
+ "component": "backbone",
1189
+ "out_features": 6144,
1190
+ "in_features": 2048,
1191
+ "params": 12582912,
1192
+ "quantizable": true
1193
+ },
1194
+ {
1195
+ "path": "language_model.model.layers.3.feed_forward.w2",
1196
+ "component": "backbone",
1197
+ "out_features": 2048,
1198
+ "in_features": 10752,
1199
+ "params": 22020096,
1200
+ "quantizable": true
1201
+ },
1202
+ {
1203
+ "path": "language_model.model.layers.3.feed_forward.w3",
1204
+ "component": "backbone",
1205
+ "out_features": 10752,
1206
+ "in_features": 2048,
1207
+ "params": 22020096,
1208
+ "quantizable": true
1209
+ },
1210
+ {
1211
+ "path": "language_model.model.layers.3.feed_forward.w1",
1212
+ "component": "backbone",
1213
+ "out_features": 10752,
1214
+ "in_features": 2048,
1215
+ "params": 22020096,
1216
+ "quantizable": true
1217
+ },
1218
+ {
1219
+ "path": "language_model.model.layers.3.conv.out_proj",
1220
+ "component": "backbone",
1221
+ "out_features": 2048,
1222
+ "in_features": 2048,
1223
+ "params": 4194304,
1224
+ "quantizable": true
1225
+ },
1226
+ {
1227
+ "path": "language_model.model.layers.3.conv.in_proj",
1228
+ "component": "backbone",
1229
+ "out_features": 6144,
1230
+ "in_features": 2048,
1231
+ "params": 12582912,
1232
+ "quantizable": true
1233
+ },
1234
+ {
1235
+ "path": "language_model.model.layers.2.feed_forward.w2",
1236
+ "component": "backbone",
1237
+ "out_features": 2048,
1238
+ "in_features": 10752,
1239
+ "params": 22020096,
1240
+ "quantizable": true
1241
+ },
1242
+ {
1243
+ "path": "language_model.model.layers.2.feed_forward.w3",
1244
+ "component": "backbone",
1245
+ "out_features": 10752,
1246
+ "in_features": 2048,
1247
+ "params": 22020096,
1248
+ "quantizable": true
1249
+ },
1250
+ {
1251
+ "path": "language_model.model.layers.2.feed_forward.w1",
1252
+ "component": "backbone",
1253
+ "out_features": 10752,
1254
+ "in_features": 2048,
1255
+ "params": 22020096,
1256
+ "quantizable": true
1257
+ },
1258
+ {
1259
+ "path": "language_model.model.layers.2.self_attn.out_proj",
1260
+ "component": "backbone",
1261
+ "out_features": 2048,
1262
+ "in_features": 2048,
1263
+ "params": 4194304,
1264
+ "quantizable": true
1265
+ },
1266
+ {
1267
+ "path": "language_model.model.layers.2.self_attn.v_proj",
1268
+ "component": "backbone",
1269
+ "out_features": 512,
1270
+ "in_features": 2048,
1271
+ "params": 1048576,
1272
+ "quantizable": true
1273
+ },
1274
+ {
1275
+ "path": "language_model.model.layers.2.self_attn.k_proj",
1276
+ "component": "backbone",
1277
+ "out_features": 512,
1278
+ "in_features": 2048,
1279
+ "params": 1048576,
1280
+ "quantizable": true
1281
+ },
1282
+ {
1283
+ "path": "language_model.model.layers.2.self_attn.q_proj",
1284
+ "component": "backbone",
1285
+ "out_features": 2048,
1286
+ "in_features": 2048,
1287
+ "params": 4194304,
1288
+ "quantizable": true
1289
+ },
1290
+ {
1291
+ "path": "language_model.model.layers.1.feed_forward.w2",
1292
+ "component": "backbone",
1293
+ "out_features": 2048,
1294
+ "in_features": 10752,
1295
+ "params": 22020096,
1296
+ "quantizable": true
1297
+ },
1298
+ {
1299
+ "path": "language_model.model.layers.1.feed_forward.w3",
1300
+ "component": "backbone",
1301
+ "out_features": 10752,
1302
+ "in_features": 2048,
1303
+ "params": 22020096,
1304
+ "quantizable": true
1305
+ },
1306
+ {
1307
+ "path": "language_model.model.layers.1.feed_forward.w1",
1308
+ "component": "backbone",
1309
+ "out_features": 10752,
1310
+ "in_features": 2048,
1311
+ "params": 22020096,
1312
+ "quantizable": true
1313
+ },
1314
+ {
1315
+ "path": "language_model.model.layers.1.conv.out_proj",
1316
+ "component": "backbone",
1317
+ "out_features": 2048,
1318
+ "in_features": 2048,
1319
+ "params": 4194304,
1320
+ "quantizable": true
1321
+ },
1322
+ {
1323
+ "path": "language_model.model.layers.1.conv.in_proj",
1324
+ "component": "backbone",
1325
+ "out_features": 6144,
1326
+ "in_features": 2048,
1327
+ "params": 12582912,
1328
+ "quantizable": true
1329
+ },
1330
+ {
1331
+ "path": "language_model.model.layers.0.feed_forward.w2",
1332
+ "component": "backbone",
1333
+ "out_features": 2048,
1334
+ "in_features": 10752,
1335
+ "params": 22020096,
1336
+ "quantizable": true
1337
+ },
1338
+ {
1339
+ "path": "language_model.model.layers.0.feed_forward.w3",
1340
+ "component": "backbone",
1341
+ "out_features": 10752,
1342
+ "in_features": 2048,
1343
+ "params": 22020096,
1344
+ "quantizable": true
1345
+ },
1346
+ {
1347
+ "path": "language_model.model.layers.0.feed_forward.w1",
1348
+ "component": "backbone",
1349
+ "out_features": 10752,
1350
+ "in_features": 2048,
1351
+ "params": 22020096,
1352
+ "quantizable": true
1353
+ },
1354
+ {
1355
+ "path": "language_model.model.layers.0.conv.out_proj",
1356
+ "component": "backbone",
1357
+ "out_features": 2048,
1358
+ "in_features": 2048,
1359
+ "params": 4194304,
1360
+ "quantizable": true
1361
+ },
1362
+ {
1363
+ "path": "language_model.model.layers.0.conv.in_proj",
1364
+ "component": "backbone",
1365
+ "out_features": 6144,
1366
+ "in_features": 2048,
1367
+ "params": 12582912,
1368
+ "quantizable": true
1369
+ },
1370
+ {
1371
+ "path": "language_model.model.embed_tokens",
1372
+ "component": "embed_head",
1373
+ "out_features": 128000,
1374
+ "in_features": 2048,
1375
+ "params": 262144000,
1376
+ "quantizable": true
1377
+ },
1378
+ {
1379
+ "path": "multi_modal_projector.linear_2",
1380
+ "component": "projector",
1381
+ "out_features": 2048,
1382
+ "in_features": 2048,
1383
+ "params": 4194304,
1384
+ "quantizable": true
1385
+ },
1386
+ {
1387
+ "path": "multi_modal_projector.linear_1",
1388
+ "component": "projector",
1389
+ "out_features": 2048,
1390
+ "in_features": 4608,
1391
+ "params": 9437184,
1392
+ "quantizable": true
1393
+ },
1394
+ {
1395
+ "path": "vision_tower.encoder.layers.26.mlp.fc2",
1396
+ "component": "vision",
1397
+ "out_features": 1152,
1398
+ "in_features": 4304,
1399
+ "params": 4958208,
1400
+ "quantizable": false
1401
+ },
1402
+ {
1403
+ "path": "vision_tower.encoder.layers.26.mlp.fc1",
1404
+ "component": "vision",
1405
+ "out_features": 4304,
1406
+ "in_features": 1152,
1407
+ "params": 4958208,
1408
+ "quantizable": true
1409
+ },
1410
+ {
1411
+ "path": "vision_tower.encoder.layers.26.self_attn.out_proj",
1412
+ "component": "vision",
1413
+ "out_features": 1152,
1414
+ "in_features": 1152,
1415
+ "params": 1327104,
1416
+ "quantizable": true
1417
+ },
1418
+ {
1419
+ "path": "vision_tower.encoder.layers.26.self_attn.v_proj",
1420
+ "component": "vision",
1421
+ "out_features": 1152,
1422
+ "in_features": 1152,
1423
+ "params": 1327104,
1424
+ "quantizable": true
1425
+ },
1426
+ {
1427
+ "path": "vision_tower.encoder.layers.26.self_attn.k_proj",
1428
+ "component": "vision",
1429
+ "out_features": 1152,
1430
+ "in_features": 1152,
1431
+ "params": 1327104,
1432
+ "quantizable": true
1433
+ },
1434
+ {
1435
+ "path": "vision_tower.encoder.layers.26.self_attn.q_proj",
1436
+ "component": "vision",
1437
+ "out_features": 1152,
1438
+ "in_features": 1152,
1439
+ "params": 1327104,
1440
+ "quantizable": true
1441
+ },
1442
+ {
1443
+ "path": "vision_tower.encoder.layers.25.mlp.fc2",
1444
+ "component": "vision",
1445
+ "out_features": 1152,
1446
+ "in_features": 4304,
1447
+ "params": 4958208,
1448
+ "quantizable": false
1449
+ },
1450
+ {
1451
+ "path": "vision_tower.encoder.layers.25.mlp.fc1",
1452
+ "component": "vision",
1453
+ "out_features": 4304,
1454
+ "in_features": 1152,
1455
+ "params": 4958208,
1456
+ "quantizable": true
1457
+ },
1458
+ {
1459
+ "path": "vision_tower.encoder.layers.25.self_attn.out_proj",
1460
+ "component": "vision",
1461
+ "out_features": 1152,
1462
+ "in_features": 1152,
1463
+ "params": 1327104,
1464
+ "quantizable": true
1465
+ },
1466
+ {
1467
+ "path": "vision_tower.encoder.layers.25.self_attn.v_proj",
1468
+ "component": "vision",
1469
+ "out_features": 1152,
1470
+ "in_features": 1152,
1471
+ "params": 1327104,
1472
+ "quantizable": true
1473
+ },
1474
+ {
1475
+ "path": "vision_tower.encoder.layers.25.self_attn.k_proj",
1476
+ "component": "vision",
1477
+ "out_features": 1152,
1478
+ "in_features": 1152,
1479
+ "params": 1327104,
1480
+ "quantizable": true
1481
+ },
1482
+ {
1483
+ "path": "vision_tower.encoder.layers.25.self_attn.q_proj",
1484
+ "component": "vision",
1485
+ "out_features": 1152,
1486
+ "in_features": 1152,
1487
+ "params": 1327104,
1488
+ "quantizable": true
1489
+ },
1490
+ {
1491
+ "path": "vision_tower.encoder.layers.24.mlp.fc2",
1492
+ "component": "vision",
1493
+ "out_features": 1152,
1494
+ "in_features": 4304,
1495
+ "params": 4958208,
1496
+ "quantizable": false
1497
+ },
1498
+ {
1499
+ "path": "vision_tower.encoder.layers.24.mlp.fc1",
1500
+ "component": "vision",
1501
+ "out_features": 4304,
1502
+ "in_features": 1152,
1503
+ "params": 4958208,
1504
+ "quantizable": true
1505
+ },
1506
+ {
1507
+ "path": "vision_tower.encoder.layers.24.self_attn.out_proj",
1508
+ "component": "vision",
1509
+ "out_features": 1152,
1510
+ "in_features": 1152,
1511
+ "params": 1327104,
1512
+ "quantizable": true
1513
+ },
1514
+ {
1515
+ "path": "vision_tower.encoder.layers.24.self_attn.v_proj",
1516
+ "component": "vision",
1517
+ "out_features": 1152,
1518
+ "in_features": 1152,
1519
+ "params": 1327104,
1520
+ "quantizable": true
1521
+ },
1522
+ {
1523
+ "path": "vision_tower.encoder.layers.24.self_attn.k_proj",
1524
+ "component": "vision",
1525
+ "out_features": 1152,
1526
+ "in_features": 1152,
1527
+ "params": 1327104,
1528
+ "quantizable": true
1529
+ },
1530
+ {
1531
+ "path": "vision_tower.encoder.layers.24.self_attn.q_proj",
1532
+ "component": "vision",
1533
+ "out_features": 1152,
1534
+ "in_features": 1152,
1535
+ "params": 1327104,
1536
+ "quantizable": true
1537
+ },
1538
+ {
1539
+ "path": "vision_tower.encoder.layers.23.mlp.fc2",
1540
+ "component": "vision",
1541
+ "out_features": 1152,
1542
+ "in_features": 4304,
1543
+ "params": 4958208,
1544
+ "quantizable": false
1545
+ },
1546
+ {
1547
+ "path": "vision_tower.encoder.layers.23.mlp.fc1",
1548
+ "component": "vision",
1549
+ "out_features": 4304,
1550
+ "in_features": 1152,
1551
+ "params": 4958208,
1552
+ "quantizable": true
1553
+ },
1554
+ {
1555
+ "path": "vision_tower.encoder.layers.23.self_attn.out_proj",
1556
+ "component": "vision",
1557
+ "out_features": 1152,
1558
+ "in_features": 1152,
1559
+ "params": 1327104,
1560
+ "quantizable": true
1561
+ },
1562
+ {
1563
+ "path": "vision_tower.encoder.layers.23.self_attn.v_proj",
1564
+ "component": "vision",
1565
+ "out_features": 1152,
1566
+ "in_features": 1152,
1567
+ "params": 1327104,
1568
+ "quantizable": true
1569
+ },
1570
+ {
1571
+ "path": "vision_tower.encoder.layers.23.self_attn.k_proj",
1572
+ "component": "vision",
1573
+ "out_features": 1152,
1574
+ "in_features": 1152,
1575
+ "params": 1327104,
1576
+ "quantizable": true
1577
+ },
1578
+ {
1579
+ "path": "vision_tower.encoder.layers.23.self_attn.q_proj",
1580
+ "component": "vision",
1581
+ "out_features": 1152,
1582
+ "in_features": 1152,
1583
+ "params": 1327104,
1584
+ "quantizable": true
1585
+ },
1586
+ {
1587
+ "path": "vision_tower.encoder.layers.22.mlp.fc2",
1588
+ "component": "vision",
1589
+ "out_features": 1152,
1590
+ "in_features": 4304,
1591
+ "params": 4958208,
1592
+ "quantizable": false
1593
+ },
1594
+ {
1595
+ "path": "vision_tower.encoder.layers.22.mlp.fc1",
1596
+ "component": "vision",
1597
+ "out_features": 4304,
1598
+ "in_features": 1152,
1599
+ "params": 4958208,
1600
+ "quantizable": true
1601
+ },
1602
+ {
1603
+ "path": "vision_tower.encoder.layers.22.self_attn.out_proj",
1604
+ "component": "vision",
1605
+ "out_features": 1152,
1606
+ "in_features": 1152,
1607
+ "params": 1327104,
1608
+ "quantizable": true
1609
+ },
1610
+ {
1611
+ "path": "vision_tower.encoder.layers.22.self_attn.v_proj",
1612
+ "component": "vision",
1613
+ "out_features": 1152,
1614
+ "in_features": 1152,
1615
+ "params": 1327104,
1616
+ "quantizable": true
1617
+ },
1618
+ {
1619
+ "path": "vision_tower.encoder.layers.22.self_attn.k_proj",
1620
+ "component": "vision",
1621
+ "out_features": 1152,
1622
+ "in_features": 1152,
1623
+ "params": 1327104,
1624
+ "quantizable": true
1625
+ },
1626
+ {
1627
+ "path": "vision_tower.encoder.layers.22.self_attn.q_proj",
1628
+ "component": "vision",
1629
+ "out_features": 1152,
1630
+ "in_features": 1152,
1631
+ "params": 1327104,
1632
+ "quantizable": true
1633
+ },
1634
+ {
1635
+ "path": "vision_tower.encoder.layers.21.mlp.fc2",
1636
+ "component": "vision",
1637
+ "out_features": 1152,
1638
+ "in_features": 4304,
1639
+ "params": 4958208,
1640
+ "quantizable": false
1641
+ },
1642
+ {
1643
+ "path": "vision_tower.encoder.layers.21.mlp.fc1",
1644
+ "component": "vision",
1645
+ "out_features": 4304,
1646
+ "in_features": 1152,
1647
+ "params": 4958208,
1648
+ "quantizable": true
1649
+ },
1650
+ {
1651
+ "path": "vision_tower.encoder.layers.21.self_attn.out_proj",
1652
+ "component": "vision",
1653
+ "out_features": 1152,
1654
+ "in_features": 1152,
1655
+ "params": 1327104,
1656
+ "quantizable": true
1657
+ },
1658
+ {
1659
+ "path": "vision_tower.encoder.layers.21.self_attn.v_proj",
1660
+ "component": "vision",
1661
+ "out_features": 1152,
1662
+ "in_features": 1152,
1663
+ "params": 1327104,
1664
+ "quantizable": true
1665
+ },
1666
+ {
1667
+ "path": "vision_tower.encoder.layers.21.self_attn.k_proj",
1668
+ "component": "vision",
1669
+ "out_features": 1152,
1670
+ "in_features": 1152,
1671
+ "params": 1327104,
1672
+ "quantizable": true
1673
+ },
1674
+ {
1675
+ "path": "vision_tower.encoder.layers.21.self_attn.q_proj",
1676
+ "component": "vision",
1677
+ "out_features": 1152,
1678
+ "in_features": 1152,
1679
+ "params": 1327104,
1680
+ "quantizable": true
1681
+ },
1682
+ {
1683
+ "path": "vision_tower.encoder.layers.20.mlp.fc2",
1684
+ "component": "vision",
1685
+ "out_features": 1152,
1686
+ "in_features": 4304,
1687
+ "params": 4958208,
1688
+ "quantizable": false
1689
+ },
1690
+ {
1691
+ "path": "vision_tower.encoder.layers.20.mlp.fc1",
1692
+ "component": "vision",
1693
+ "out_features": 4304,
1694
+ "in_features": 1152,
1695
+ "params": 4958208,
1696
+ "quantizable": true
1697
+ },
1698
+ {
1699
+ "path": "vision_tower.encoder.layers.20.self_attn.out_proj",
1700
+ "component": "vision",
1701
+ "out_features": 1152,
1702
+ "in_features": 1152,
1703
+ "params": 1327104,
1704
+ "quantizable": true
1705
+ },
1706
+ {
1707
+ "path": "vision_tower.encoder.layers.20.self_attn.v_proj",
1708
+ "component": "vision",
1709
+ "out_features": 1152,
1710
+ "in_features": 1152,
1711
+ "params": 1327104,
1712
+ "quantizable": true
1713
+ },
1714
+ {
1715
+ "path": "vision_tower.encoder.layers.20.self_attn.k_proj",
1716
+ "component": "vision",
1717
+ "out_features": 1152,
1718
+ "in_features": 1152,
1719
+ "params": 1327104,
1720
+ "quantizable": true
1721
+ },
1722
+ {
1723
+ "path": "vision_tower.encoder.layers.20.self_attn.q_proj",
1724
+ "component": "vision",
1725
+ "out_features": 1152,
1726
+ "in_features": 1152,
1727
+ "params": 1327104,
1728
+ "quantizable": true
1729
+ },
1730
+ {
1731
+ "path": "vision_tower.encoder.layers.19.mlp.fc2",
1732
+ "component": "vision",
1733
+ "out_features": 1152,
1734
+ "in_features": 4304,
1735
+ "params": 4958208,
1736
+ "quantizable": false
1737
+ },
1738
+ {
1739
+ "path": "vision_tower.encoder.layers.19.mlp.fc1",
1740
+ "component": "vision",
1741
+ "out_features": 4304,
1742
+ "in_features": 1152,
1743
+ "params": 4958208,
1744
+ "quantizable": true
1745
+ },
1746
+ {
1747
+ "path": "vision_tower.encoder.layers.19.self_attn.out_proj",
1748
+ "component": "vision",
1749
+ "out_features": 1152,
1750
+ "in_features": 1152,
1751
+ "params": 1327104,
1752
+ "quantizable": true
1753
+ },
1754
+ {
1755
+ "path": "vision_tower.encoder.layers.19.self_attn.v_proj",
1756
+ "component": "vision",
1757
+ "out_features": 1152,
1758
+ "in_features": 1152,
1759
+ "params": 1327104,
1760
+ "quantizable": true
1761
+ },
1762
+ {
1763
+ "path": "vision_tower.encoder.layers.19.self_attn.k_proj",
1764
+ "component": "vision",
1765
+ "out_features": 1152,
1766
+ "in_features": 1152,
1767
+ "params": 1327104,
1768
+ "quantizable": true
1769
+ },
1770
+ {
1771
+ "path": "vision_tower.encoder.layers.19.self_attn.q_proj",
1772
+ "component": "vision",
1773
+ "out_features": 1152,
1774
+ "in_features": 1152,
1775
+ "params": 1327104,
1776
+ "quantizable": true
1777
+ },
1778
+ {
1779
+ "path": "vision_tower.encoder.layers.18.mlp.fc2",
1780
+ "component": "vision",
1781
+ "out_features": 1152,
1782
+ "in_features": 4304,
1783
+ "params": 4958208,
1784
+ "quantizable": false
1785
+ },
1786
+ {
1787
+ "path": "vision_tower.encoder.layers.18.mlp.fc1",
1788
+ "component": "vision",
1789
+ "out_features": 4304,
1790
+ "in_features": 1152,
1791
+ "params": 4958208,
1792
+ "quantizable": true
1793
+ },
1794
+ {
1795
+ "path": "vision_tower.encoder.layers.18.self_attn.out_proj",
1796
+ "component": "vision",
1797
+ "out_features": 1152,
1798
+ "in_features": 1152,
1799
+ "params": 1327104,
1800
+ "quantizable": true
1801
+ },
1802
+ {
1803
+ "path": "vision_tower.encoder.layers.18.self_attn.v_proj",
1804
+ "component": "vision",
1805
+ "out_features": 1152,
1806
+ "in_features": 1152,
1807
+ "params": 1327104,
1808
+ "quantizable": true
1809
+ },
1810
+ {
1811
+ "path": "vision_tower.encoder.layers.18.self_attn.k_proj",
1812
+ "component": "vision",
1813
+ "out_features": 1152,
1814
+ "in_features": 1152,
1815
+ "params": 1327104,
1816
+ "quantizable": true
1817
+ },
1818
+ {
1819
+ "path": "vision_tower.encoder.layers.18.self_attn.q_proj",
1820
+ "component": "vision",
1821
+ "out_features": 1152,
1822
+ "in_features": 1152,
1823
+ "params": 1327104,
1824
+ "quantizable": true
1825
+ },
1826
+ {
1827
+ "path": "vision_tower.encoder.layers.17.mlp.fc2",
1828
+ "component": "vision",
1829
+ "out_features": 1152,
1830
+ "in_features": 4304,
1831
+ "params": 4958208,
1832
+ "quantizable": false
1833
+ },
1834
+ {
1835
+ "path": "vision_tower.encoder.layers.17.mlp.fc1",
1836
+ "component": "vision",
1837
+ "out_features": 4304,
1838
+ "in_features": 1152,
1839
+ "params": 4958208,
1840
+ "quantizable": true
1841
+ },
1842
+ {
1843
+ "path": "vision_tower.encoder.layers.17.self_attn.out_proj",
1844
+ "component": "vision",
1845
+ "out_features": 1152,
1846
+ "in_features": 1152,
1847
+ "params": 1327104,
1848
+ "quantizable": true
1849
+ },
1850
+ {
1851
+ "path": "vision_tower.encoder.layers.17.self_attn.v_proj",
1852
+ "component": "vision",
1853
+ "out_features": 1152,
1854
+ "in_features": 1152,
1855
+ "params": 1327104,
1856
+ "quantizable": true
1857
+ },
1858
+ {
1859
+ "path": "vision_tower.encoder.layers.17.self_attn.k_proj",
1860
+ "component": "vision",
1861
+ "out_features": 1152,
1862
+ "in_features": 1152,
1863
+ "params": 1327104,
1864
+ "quantizable": true
1865
+ },
1866
+ {
1867
+ "path": "vision_tower.encoder.layers.17.self_attn.q_proj",
1868
+ "component": "vision",
1869
+ "out_features": 1152,
1870
+ "in_features": 1152,
1871
+ "params": 1327104,
1872
+ "quantizable": true
1873
+ },
1874
+ {
1875
+ "path": "vision_tower.encoder.layers.16.mlp.fc2",
1876
+ "component": "vision",
1877
+ "out_features": 1152,
1878
+ "in_features": 4304,
1879
+ "params": 4958208,
1880
+ "quantizable": false
1881
+ },
1882
+ {
1883
+ "path": "vision_tower.encoder.layers.16.mlp.fc1",
1884
+ "component": "vision",
1885
+ "out_features": 4304,
1886
+ "in_features": 1152,
1887
+ "params": 4958208,
1888
+ "quantizable": true
1889
+ },
1890
+ {
1891
+ "path": "vision_tower.encoder.layers.16.self_attn.out_proj",
1892
+ "component": "vision",
1893
+ "out_features": 1152,
1894
+ "in_features": 1152,
1895
+ "params": 1327104,
1896
+ "quantizable": true
1897
+ },
1898
+ {
1899
+ "path": "vision_tower.encoder.layers.16.self_attn.v_proj",
1900
+ "component": "vision",
1901
+ "out_features": 1152,
1902
+ "in_features": 1152,
1903
+ "params": 1327104,
1904
+ "quantizable": true
1905
+ },
1906
+ {
1907
+ "path": "vision_tower.encoder.layers.16.self_attn.k_proj",
1908
+ "component": "vision",
1909
+ "out_features": 1152,
1910
+ "in_features": 1152,
1911
+ "params": 1327104,
1912
+ "quantizable": true
1913
+ },
1914
+ {
1915
+ "path": "vision_tower.encoder.layers.16.self_attn.q_proj",
1916
+ "component": "vision",
1917
+ "out_features": 1152,
1918
+ "in_features": 1152,
1919
+ "params": 1327104,
1920
+ "quantizable": true
1921
+ },
1922
+ {
1923
+ "path": "vision_tower.encoder.layers.15.mlp.fc2",
1924
+ "component": "vision",
1925
+ "out_features": 1152,
1926
+ "in_features": 4304,
1927
+ "params": 4958208,
1928
+ "quantizable": false
1929
+ },
1930
+ {
1931
+ "path": "vision_tower.encoder.layers.15.mlp.fc1",
1932
+ "component": "vision",
1933
+ "out_features": 4304,
1934
+ "in_features": 1152,
1935
+ "params": 4958208,
1936
+ "quantizable": true
1937
+ },
1938
+ {
1939
+ "path": "vision_tower.encoder.layers.15.self_attn.out_proj",
1940
+ "component": "vision",
1941
+ "out_features": 1152,
1942
+ "in_features": 1152,
1943
+ "params": 1327104,
1944
+ "quantizable": true
1945
+ },
1946
+ {
1947
+ "path": "vision_tower.encoder.layers.15.self_attn.v_proj",
1948
+ "component": "vision",
1949
+ "out_features": 1152,
1950
+ "in_features": 1152,
1951
+ "params": 1327104,
1952
+ "quantizable": true
1953
+ },
1954
+ {
1955
+ "path": "vision_tower.encoder.layers.15.self_attn.k_proj",
1956
+ "component": "vision",
1957
+ "out_features": 1152,
1958
+ "in_features": 1152,
1959
+ "params": 1327104,
1960
+ "quantizable": true
1961
+ },
1962
+ {
1963
+ "path": "vision_tower.encoder.layers.15.self_attn.q_proj",
1964
+ "component": "vision",
1965
+ "out_features": 1152,
1966
+ "in_features": 1152,
1967
+ "params": 1327104,
1968
+ "quantizable": true
1969
+ },
1970
+ {
1971
+ "path": "vision_tower.encoder.layers.14.mlp.fc2",
1972
+ "component": "vision",
1973
+ "out_features": 1152,
1974
+ "in_features": 4304,
1975
+ "params": 4958208,
1976
+ "quantizable": false
1977
+ },
1978
+ {
1979
+ "path": "vision_tower.encoder.layers.14.mlp.fc1",
1980
+ "component": "vision",
1981
+ "out_features": 4304,
1982
+ "in_features": 1152,
1983
+ "params": 4958208,
1984
+ "quantizable": true
1985
+ },
1986
+ {
1987
+ "path": "vision_tower.encoder.layers.14.self_attn.out_proj",
1988
+ "component": "vision",
1989
+ "out_features": 1152,
1990
+ "in_features": 1152,
1991
+ "params": 1327104,
1992
+ "quantizable": true
1993
+ },
1994
+ {
1995
+ "path": "vision_tower.encoder.layers.14.self_attn.v_proj",
1996
+ "component": "vision",
1997
+ "out_features": 1152,
1998
+ "in_features": 1152,
1999
+ "params": 1327104,
2000
+ "quantizable": true
2001
+ },
2002
+ {
2003
+ "path": "vision_tower.encoder.layers.14.self_attn.k_proj",
2004
+ "component": "vision",
2005
+ "out_features": 1152,
2006
+ "in_features": 1152,
2007
+ "params": 1327104,
2008
+ "quantizable": true
2009
+ },
2010
+ {
2011
+ "path": "vision_tower.encoder.layers.14.self_attn.q_proj",
2012
+ "component": "vision",
2013
+ "out_features": 1152,
2014
+ "in_features": 1152,
2015
+ "params": 1327104,
2016
+ "quantizable": true
2017
+ },
2018
+ {
2019
+ "path": "vision_tower.encoder.layers.13.mlp.fc2",
2020
+ "component": "vision",
2021
+ "out_features": 1152,
2022
+ "in_features": 4304,
2023
+ "params": 4958208,
2024
+ "quantizable": false
2025
+ },
2026
+ {
2027
+ "path": "vision_tower.encoder.layers.13.mlp.fc1",
2028
+ "component": "vision",
2029
+ "out_features": 4304,
2030
+ "in_features": 1152,
2031
+ "params": 4958208,
2032
+ "quantizable": true
2033
+ },
2034
+ {
2035
+ "path": "vision_tower.encoder.layers.13.self_attn.out_proj",
2036
+ "component": "vision",
2037
+ "out_features": 1152,
2038
+ "in_features": 1152,
2039
+ "params": 1327104,
2040
+ "quantizable": true
2041
+ },
2042
+ {
2043
+ "path": "vision_tower.encoder.layers.13.self_attn.v_proj",
2044
+ "component": "vision",
2045
+ "out_features": 1152,
2046
+ "in_features": 1152,
2047
+ "params": 1327104,
2048
+ "quantizable": true
2049
+ },
2050
+ {
2051
+ "path": "vision_tower.encoder.layers.13.self_attn.k_proj",
2052
+ "component": "vision",
2053
+ "out_features": 1152,
2054
+ "in_features": 1152,
2055
+ "params": 1327104,
2056
+ "quantizable": true
2057
+ },
2058
+ {
2059
+ "path": "vision_tower.encoder.layers.13.self_attn.q_proj",
2060
+ "component": "vision",
2061
+ "out_features": 1152,
2062
+ "in_features": 1152,
2063
+ "params": 1327104,
2064
+ "quantizable": true
2065
+ },
2066
+ {
2067
+ "path": "vision_tower.encoder.layers.12.mlp.fc2",
2068
+ "component": "vision",
2069
+ "out_features": 1152,
2070
+ "in_features": 4304,
2071
+ "params": 4958208,
2072
+ "quantizable": false
2073
+ },
2074
+ {
2075
+ "path": "vision_tower.encoder.layers.12.mlp.fc1",
2076
+ "component": "vision",
2077
+ "out_features": 4304,
2078
+ "in_features": 1152,
2079
+ "params": 4958208,
2080
+ "quantizable": true
2081
+ },
2082
+ {
2083
+ "path": "vision_tower.encoder.layers.12.self_attn.out_proj",
2084
+ "component": "vision",
2085
+ "out_features": 1152,
2086
+ "in_features": 1152,
2087
+ "params": 1327104,
2088
+ "quantizable": true
2089
+ },
2090
+ {
2091
+ "path": "vision_tower.encoder.layers.12.self_attn.v_proj",
2092
+ "component": "vision",
2093
+ "out_features": 1152,
2094
+ "in_features": 1152,
2095
+ "params": 1327104,
2096
+ "quantizable": true
2097
+ },
2098
+ {
2099
+ "path": "vision_tower.encoder.layers.12.self_attn.k_proj",
2100
+ "component": "vision",
2101
+ "out_features": 1152,
2102
+ "in_features": 1152,
2103
+ "params": 1327104,
2104
+ "quantizable": true
2105
+ },
2106
+ {
2107
+ "path": "vision_tower.encoder.layers.12.self_attn.q_proj",
2108
+ "component": "vision",
2109
+ "out_features": 1152,
2110
+ "in_features": 1152,
2111
+ "params": 1327104,
2112
+ "quantizable": true
2113
+ },
2114
+ {
2115
+ "path": "vision_tower.encoder.layers.11.mlp.fc2",
2116
+ "component": "vision",
2117
+ "out_features": 1152,
2118
+ "in_features": 4304,
2119
+ "params": 4958208,
2120
+ "quantizable": false
2121
+ },
2122
+ {
2123
+ "path": "vision_tower.encoder.layers.11.mlp.fc1",
2124
+ "component": "vision",
2125
+ "out_features": 4304,
2126
+ "in_features": 1152,
2127
+ "params": 4958208,
2128
+ "quantizable": true
2129
+ },
2130
+ {
2131
+ "path": "vision_tower.encoder.layers.11.self_attn.out_proj",
2132
+ "component": "vision",
2133
+ "out_features": 1152,
2134
+ "in_features": 1152,
2135
+ "params": 1327104,
2136
+ "quantizable": true
2137
+ },
2138
+ {
2139
+ "path": "vision_tower.encoder.layers.11.self_attn.v_proj",
2140
+ "component": "vision",
2141
+ "out_features": 1152,
2142
+ "in_features": 1152,
2143
+ "params": 1327104,
2144
+ "quantizable": true
2145
+ },
2146
+ {
2147
+ "path": "vision_tower.encoder.layers.11.self_attn.k_proj",
2148
+ "component": "vision",
2149
+ "out_features": 1152,
2150
+ "in_features": 1152,
2151
+ "params": 1327104,
2152
+ "quantizable": true
2153
+ },
2154
+ {
2155
+ "path": "vision_tower.encoder.layers.11.self_attn.q_proj",
2156
+ "component": "vision",
2157
+ "out_features": 1152,
2158
+ "in_features": 1152,
2159
+ "params": 1327104,
2160
+ "quantizable": true
2161
+ },
2162
+ {
2163
+ "path": "vision_tower.encoder.layers.10.mlp.fc2",
2164
+ "component": "vision",
2165
+ "out_features": 1152,
2166
+ "in_features": 4304,
2167
+ "params": 4958208,
2168
+ "quantizable": false
2169
+ },
2170
+ {
2171
+ "path": "vision_tower.encoder.layers.10.mlp.fc1",
2172
+ "component": "vision",
2173
+ "out_features": 4304,
2174
+ "in_features": 1152,
2175
+ "params": 4958208,
2176
+ "quantizable": true
2177
+ },
2178
+ {
2179
+ "path": "vision_tower.encoder.layers.10.self_attn.out_proj",
2180
+ "component": "vision",
2181
+ "out_features": 1152,
2182
+ "in_features": 1152,
2183
+ "params": 1327104,
2184
+ "quantizable": true
2185
+ },
2186
+ {
2187
+ "path": "vision_tower.encoder.layers.10.self_attn.v_proj",
2188
+ "component": "vision",
2189
+ "out_features": 1152,
2190
+ "in_features": 1152,
2191
+ "params": 1327104,
2192
+ "quantizable": true
2193
+ },
2194
+ {
2195
+ "path": "vision_tower.encoder.layers.10.self_attn.k_proj",
2196
+ "component": "vision",
2197
+ "out_features": 1152,
2198
+ "in_features": 1152,
2199
+ "params": 1327104,
2200
+ "quantizable": true
2201
+ },
2202
+ {
2203
+ "path": "vision_tower.encoder.layers.10.self_attn.q_proj",
2204
+ "component": "vision",
2205
+ "out_features": 1152,
2206
+ "in_features": 1152,
2207
+ "params": 1327104,
2208
+ "quantizable": true
2209
+ },
2210
+ {
2211
+ "path": "vision_tower.encoder.layers.9.mlp.fc2",
2212
+ "component": "vision",
2213
+ "out_features": 1152,
2214
+ "in_features": 4304,
2215
+ "params": 4958208,
2216
+ "quantizable": false
2217
+ },
2218
+ {
2219
+ "path": "vision_tower.encoder.layers.9.mlp.fc1",
2220
+ "component": "vision",
2221
+ "out_features": 4304,
2222
+ "in_features": 1152,
2223
+ "params": 4958208,
2224
+ "quantizable": true
2225
+ },
2226
+ {
2227
+ "path": "vision_tower.encoder.layers.9.self_attn.out_proj",
2228
+ "component": "vision",
2229
+ "out_features": 1152,
2230
+ "in_features": 1152,
2231
+ "params": 1327104,
2232
+ "quantizable": true
2233
+ },
2234
+ {
2235
+ "path": "vision_tower.encoder.layers.9.self_attn.v_proj",
2236
+ "component": "vision",
2237
+ "out_features": 1152,
2238
+ "in_features": 1152,
2239
+ "params": 1327104,
2240
+ "quantizable": true
2241
+ },
2242
+ {
2243
+ "path": "vision_tower.encoder.layers.9.self_attn.k_proj",
2244
+ "component": "vision",
2245
+ "out_features": 1152,
2246
+ "in_features": 1152,
2247
+ "params": 1327104,
2248
+ "quantizable": true
2249
+ },
2250
+ {
2251
+ "path": "vision_tower.encoder.layers.9.self_attn.q_proj",
2252
+ "component": "vision",
2253
+ "out_features": 1152,
2254
+ "in_features": 1152,
2255
+ "params": 1327104,
2256
+ "quantizable": true
2257
+ },
2258
+ {
2259
+ "path": "vision_tower.encoder.layers.8.mlp.fc2",
2260
+ "component": "vision",
2261
+ "out_features": 1152,
2262
+ "in_features": 4304,
2263
+ "params": 4958208,
2264
+ "quantizable": false
2265
+ },
2266
+ {
2267
+ "path": "vision_tower.encoder.layers.8.mlp.fc1",
2268
+ "component": "vision",
2269
+ "out_features": 4304,
2270
+ "in_features": 1152,
2271
+ "params": 4958208,
2272
+ "quantizable": true
2273
+ },
2274
+ {
2275
+ "path": "vision_tower.encoder.layers.8.self_attn.out_proj",
2276
+ "component": "vision",
2277
+ "out_features": 1152,
2278
+ "in_features": 1152,
2279
+ "params": 1327104,
2280
+ "quantizable": true
2281
+ },
2282
+ {
2283
+ "path": "vision_tower.encoder.layers.8.self_attn.v_proj",
2284
+ "component": "vision",
2285
+ "out_features": 1152,
2286
+ "in_features": 1152,
2287
+ "params": 1327104,
2288
+ "quantizable": true
2289
+ },
2290
+ {
2291
+ "path": "vision_tower.encoder.layers.8.self_attn.k_proj",
2292
+ "component": "vision",
2293
+ "out_features": 1152,
2294
+ "in_features": 1152,
2295
+ "params": 1327104,
2296
+ "quantizable": true
2297
+ },
2298
+ {
2299
+ "path": "vision_tower.encoder.layers.8.self_attn.q_proj",
2300
+ "component": "vision",
2301
+ "out_features": 1152,
2302
+ "in_features": 1152,
2303
+ "params": 1327104,
2304
+ "quantizable": true
2305
+ },
2306
+ {
2307
+ "path": "vision_tower.encoder.layers.7.mlp.fc2",
2308
+ "component": "vision",
2309
+ "out_features": 1152,
2310
+ "in_features": 4304,
2311
+ "params": 4958208,
2312
+ "quantizable": false
2313
+ },
2314
+ {
2315
+ "path": "vision_tower.encoder.layers.7.mlp.fc1",
2316
+ "component": "vision",
2317
+ "out_features": 4304,
2318
+ "in_features": 1152,
2319
+ "params": 4958208,
2320
+ "quantizable": true
2321
+ },
2322
+ {
2323
+ "path": "vision_tower.encoder.layers.7.self_attn.out_proj",
2324
+ "component": "vision",
2325
+ "out_features": 1152,
2326
+ "in_features": 1152,
2327
+ "params": 1327104,
2328
+ "quantizable": true
2329
+ },
2330
+ {
2331
+ "path": "vision_tower.encoder.layers.7.self_attn.v_proj",
2332
+ "component": "vision",
2333
+ "out_features": 1152,
2334
+ "in_features": 1152,
2335
+ "params": 1327104,
2336
+ "quantizable": true
2337
+ },
2338
+ {
2339
+ "path": "vision_tower.encoder.layers.7.self_attn.k_proj",
2340
+ "component": "vision",
2341
+ "out_features": 1152,
2342
+ "in_features": 1152,
2343
+ "params": 1327104,
2344
+ "quantizable": true
2345
+ },
2346
+ {
2347
+ "path": "vision_tower.encoder.layers.7.self_attn.q_proj",
2348
+ "component": "vision",
2349
+ "out_features": 1152,
2350
+ "in_features": 1152,
2351
+ "params": 1327104,
2352
+ "quantizable": true
2353
+ },
2354
+ {
2355
+ "path": "vision_tower.encoder.layers.6.mlp.fc2",
2356
+ "component": "vision",
2357
+ "out_features": 1152,
2358
+ "in_features": 4304,
2359
+ "params": 4958208,
2360
+ "quantizable": false
2361
+ },
2362
+ {
2363
+ "path": "vision_tower.encoder.layers.6.mlp.fc1",
2364
+ "component": "vision",
2365
+ "out_features": 4304,
2366
+ "in_features": 1152,
2367
+ "params": 4958208,
2368
+ "quantizable": true
2369
+ },
2370
+ {
2371
+ "path": "vision_tower.encoder.layers.6.self_attn.out_proj",
2372
+ "component": "vision",
2373
+ "out_features": 1152,
2374
+ "in_features": 1152,
2375
+ "params": 1327104,
2376
+ "quantizable": true
2377
+ },
2378
+ {
2379
+ "path": "vision_tower.encoder.layers.6.self_attn.v_proj",
2380
+ "component": "vision",
2381
+ "out_features": 1152,
2382
+ "in_features": 1152,
2383
+ "params": 1327104,
2384
+ "quantizable": true
2385
+ },
2386
+ {
2387
+ "path": "vision_tower.encoder.layers.6.self_attn.k_proj",
2388
+ "component": "vision",
2389
+ "out_features": 1152,
2390
+ "in_features": 1152,
2391
+ "params": 1327104,
2392
+ "quantizable": true
2393
+ },
2394
+ {
2395
+ "path": "vision_tower.encoder.layers.6.self_attn.q_proj",
2396
+ "component": "vision",
2397
+ "out_features": 1152,
2398
+ "in_features": 1152,
2399
+ "params": 1327104,
2400
+ "quantizable": true
2401
+ },
2402
+ {
2403
+ "path": "vision_tower.encoder.layers.5.mlp.fc2",
2404
+ "component": "vision",
2405
+ "out_features": 1152,
2406
+ "in_features": 4304,
2407
+ "params": 4958208,
2408
+ "quantizable": false
2409
+ },
2410
+ {
2411
+ "path": "vision_tower.encoder.layers.5.mlp.fc1",
2412
+ "component": "vision",
2413
+ "out_features": 4304,
2414
+ "in_features": 1152,
2415
+ "params": 4958208,
2416
+ "quantizable": true
2417
+ },
2418
+ {
2419
+ "path": "vision_tower.encoder.layers.5.self_attn.out_proj",
2420
+ "component": "vision",
2421
+ "out_features": 1152,
2422
+ "in_features": 1152,
2423
+ "params": 1327104,
2424
+ "quantizable": true
2425
+ },
2426
+ {
2427
+ "path": "vision_tower.encoder.layers.5.self_attn.v_proj",
2428
+ "component": "vision",
2429
+ "out_features": 1152,
2430
+ "in_features": 1152,
2431
+ "params": 1327104,
2432
+ "quantizable": true
2433
+ },
2434
+ {
2435
+ "path": "vision_tower.encoder.layers.5.self_attn.k_proj",
2436
+ "component": "vision",
2437
+ "out_features": 1152,
2438
+ "in_features": 1152,
2439
+ "params": 1327104,
2440
+ "quantizable": true
2441
+ },
2442
+ {
2443
+ "path": "vision_tower.encoder.layers.5.self_attn.q_proj",
2444
+ "component": "vision",
2445
+ "out_features": 1152,
2446
+ "in_features": 1152,
2447
+ "params": 1327104,
2448
+ "quantizable": true
2449
+ },
2450
+ {
2451
+ "path": "vision_tower.encoder.layers.4.mlp.fc2",
2452
+ "component": "vision",
2453
+ "out_features": 1152,
2454
+ "in_features": 4304,
2455
+ "params": 4958208,
2456
+ "quantizable": false
2457
+ },
2458
+ {
2459
+ "path": "vision_tower.encoder.layers.4.mlp.fc1",
2460
+ "component": "vision",
2461
+ "out_features": 4304,
2462
+ "in_features": 1152,
2463
+ "params": 4958208,
2464
+ "quantizable": true
2465
+ },
2466
+ {
2467
+ "path": "vision_tower.encoder.layers.4.self_attn.out_proj",
2468
+ "component": "vision",
2469
+ "out_features": 1152,
2470
+ "in_features": 1152,
2471
+ "params": 1327104,
2472
+ "quantizable": true
2473
+ },
2474
+ {
2475
+ "path": "vision_tower.encoder.layers.4.self_attn.v_proj",
2476
+ "component": "vision",
2477
+ "out_features": 1152,
2478
+ "in_features": 1152,
2479
+ "params": 1327104,
2480
+ "quantizable": true
2481
+ },
2482
+ {
2483
+ "path": "vision_tower.encoder.layers.4.self_attn.k_proj",
2484
+ "component": "vision",
2485
+ "out_features": 1152,
2486
+ "in_features": 1152,
2487
+ "params": 1327104,
2488
+ "quantizable": true
2489
+ },
2490
+ {
2491
+ "path": "vision_tower.encoder.layers.4.self_attn.q_proj",
2492
+ "component": "vision",
2493
+ "out_features": 1152,
2494
+ "in_features": 1152,
2495
+ "params": 1327104,
2496
+ "quantizable": true
2497
+ },
2498
+ {
2499
+ "path": "vision_tower.encoder.layers.3.mlp.fc2",
2500
+ "component": "vision",
2501
+ "out_features": 1152,
2502
+ "in_features": 4304,
2503
+ "params": 4958208,
2504
+ "quantizable": false
2505
+ },
2506
+ {
2507
+ "path": "vision_tower.encoder.layers.3.mlp.fc1",
2508
+ "component": "vision",
2509
+ "out_features": 4304,
2510
+ "in_features": 1152,
2511
+ "params": 4958208,
2512
+ "quantizable": true
2513
+ },
2514
+ {
2515
+ "path": "vision_tower.encoder.layers.3.self_attn.out_proj",
2516
+ "component": "vision",
2517
+ "out_features": 1152,
2518
+ "in_features": 1152,
2519
+ "params": 1327104,
2520
+ "quantizable": true
2521
+ },
2522
+ {
2523
+ "path": "vision_tower.encoder.layers.3.self_attn.v_proj",
2524
+ "component": "vision",
2525
+ "out_features": 1152,
2526
+ "in_features": 1152,
2527
+ "params": 1327104,
2528
+ "quantizable": true
2529
+ },
2530
+ {
2531
+ "path": "vision_tower.encoder.layers.3.self_attn.k_proj",
2532
+ "component": "vision",
2533
+ "out_features": 1152,
2534
+ "in_features": 1152,
2535
+ "params": 1327104,
2536
+ "quantizable": true
2537
+ },
2538
+ {
2539
+ "path": "vision_tower.encoder.layers.3.self_attn.q_proj",
2540
+ "component": "vision",
2541
+ "out_features": 1152,
2542
+ "in_features": 1152,
2543
+ "params": 1327104,
2544
+ "quantizable": true
2545
+ },
2546
+ {
2547
+ "path": "vision_tower.encoder.layers.2.mlp.fc2",
2548
+ "component": "vision",
2549
+ "out_features": 1152,
2550
+ "in_features": 4304,
2551
+ "params": 4958208,
2552
+ "quantizable": false
2553
+ },
2554
+ {
2555
+ "path": "vision_tower.encoder.layers.2.mlp.fc1",
2556
+ "component": "vision",
2557
+ "out_features": 4304,
2558
+ "in_features": 1152,
2559
+ "params": 4958208,
2560
+ "quantizable": true
2561
+ },
2562
+ {
2563
+ "path": "vision_tower.encoder.layers.2.self_attn.out_proj",
2564
+ "component": "vision",
2565
+ "out_features": 1152,
2566
+ "in_features": 1152,
2567
+ "params": 1327104,
2568
+ "quantizable": true
2569
+ },
2570
+ {
2571
+ "path": "vision_tower.encoder.layers.2.self_attn.v_proj",
2572
+ "component": "vision",
2573
+ "out_features": 1152,
2574
+ "in_features": 1152,
2575
+ "params": 1327104,
2576
+ "quantizable": true
2577
+ },
2578
+ {
2579
+ "path": "vision_tower.encoder.layers.2.self_attn.k_proj",
2580
+ "component": "vision",
2581
+ "out_features": 1152,
2582
+ "in_features": 1152,
2583
+ "params": 1327104,
2584
+ "quantizable": true
2585
+ },
2586
+ {
2587
+ "path": "vision_tower.encoder.layers.2.self_attn.q_proj",
2588
+ "component": "vision",
2589
+ "out_features": 1152,
2590
+ "in_features": 1152,
2591
+ "params": 1327104,
2592
+ "quantizable": true
2593
+ },
2594
+ {
2595
+ "path": "vision_tower.encoder.layers.1.mlp.fc2",
2596
+ "component": "vision",
2597
+ "out_features": 1152,
2598
+ "in_features": 4304,
2599
+ "params": 4958208,
2600
+ "quantizable": false
2601
+ },
2602
+ {
2603
+ "path": "vision_tower.encoder.layers.1.mlp.fc1",
2604
+ "component": "vision",
2605
+ "out_features": 4304,
2606
+ "in_features": 1152,
2607
+ "params": 4958208,
2608
+ "quantizable": true
2609
+ },
2610
+ {
2611
+ "path": "vision_tower.encoder.layers.1.self_attn.out_proj",
2612
+ "component": "vision",
2613
+ "out_features": 1152,
2614
+ "in_features": 1152,
2615
+ "params": 1327104,
2616
+ "quantizable": true
2617
+ },
2618
+ {
2619
+ "path": "vision_tower.encoder.layers.1.self_attn.v_proj",
2620
+ "component": "vision",
2621
+ "out_features": 1152,
2622
+ "in_features": 1152,
2623
+ "params": 1327104,
2624
+ "quantizable": true
2625
+ },
2626
+ {
2627
+ "path": "vision_tower.encoder.layers.1.self_attn.k_proj",
2628
+ "component": "vision",
2629
+ "out_features": 1152,
2630
+ "in_features": 1152,
2631
+ "params": 1327104,
2632
+ "quantizable": true
2633
+ },
2634
+ {
2635
+ "path": "vision_tower.encoder.layers.1.self_attn.q_proj",
2636
+ "component": "vision",
2637
+ "out_features": 1152,
2638
+ "in_features": 1152,
2639
+ "params": 1327104,
2640
+ "quantizable": true
2641
+ },
2642
+ {
2643
+ "path": "vision_tower.encoder.layers.0.mlp.fc2",
2644
+ "component": "vision",
2645
+ "out_features": 1152,
2646
+ "in_features": 4304,
2647
+ "params": 4958208,
2648
+ "quantizable": false
2649
+ },
2650
+ {
2651
+ "path": "vision_tower.encoder.layers.0.mlp.fc1",
2652
+ "component": "vision",
2653
+ "out_features": 4304,
2654
+ "in_features": 1152,
2655
+ "params": 4958208,
2656
+ "quantizable": true
2657
+ },
2658
+ {
2659
+ "path": "vision_tower.encoder.layers.0.self_attn.out_proj",
2660
+ "component": "vision",
2661
+ "out_features": 1152,
2662
+ "in_features": 1152,
2663
+ "params": 1327104,
2664
+ "quantizable": true
2665
+ },
2666
+ {
2667
+ "path": "vision_tower.encoder.layers.0.self_attn.v_proj",
2668
+ "component": "vision",
2669
+ "out_features": 1152,
2670
+ "in_features": 1152,
2671
+ "params": 1327104,
2672
+ "quantizable": true
2673
+ },
2674
+ {
2675
+ "path": "vision_tower.encoder.layers.0.self_attn.k_proj",
2676
+ "component": "vision",
2677
+ "out_features": 1152,
2678
+ "in_features": 1152,
2679
+ "params": 1327104,
2680
+ "quantizable": true
2681
+ },
2682
+ {
2683
+ "path": "vision_tower.encoder.layers.0.self_attn.q_proj",
2684
+ "component": "vision",
2685
+ "out_features": 1152,
2686
+ "in_features": 1152,
2687
+ "params": 1327104,
2688
+ "quantizable": true
2689
+ },
2690
+ {
2691
+ "path": "vision_tower.embeddings.position_embedding",
2692
+ "component": "vision",
2693
+ "out_features": 256,
2694
+ "in_features": 1152,
2695
+ "params": 294912,
2696
+ "quantizable": true
2697
+ },
2698
+ {
2699
+ "path": "vision_tower.embeddings.patch_embedding",
2700
+ "component": "vision",
2701
+ "out_features": 1152,
2702
+ "in_features": 768,
2703
+ "params": 884736,
2704
+ "quantizable": true
2705
+ }
2706
+ ]
2707
+ }
head_to_head_n300.json ADDED
@@ -0,0 +1,643 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "meta": {
3
+ "n": 300,
4
+ "max_image_tokens": 512
5
+ },
6
+ "results": [
7
+ {
8
+ "config": "bf16",
9
+ "mean_accuracy": 0.8152,
10
+ "benchmarks": [
11
+ {
12
+ "benchmark": "docvqa",
13
+ "n": 300,
14
+ "seed": 0,
15
+ "max_image_tokens": 512,
16
+ "max_num_patches": 2048,
17
+ "accuracy": 0.8526,
18
+ "accuracy_given_parsed": 0.8526,
19
+ "parse_failure_rate": 0.0,
20
+ "n_parsed": 300,
21
+ "published": 91.1,
22
+ "wall_seconds": 387.2,
23
+ "parse_failure_samples": [],
24
+ "ci95": 4.01
25
+ },
26
+ {
27
+ "benchmark": "chartqa",
28
+ "n": 300,
29
+ "seed": 0,
30
+ "max_image_tokens": 512,
31
+ "max_num_patches": 2048,
32
+ "accuracy": 0.86,
33
+ "accuracy_given_parsed": 0.86,
34
+ "parse_failure_rate": 0.0,
35
+ "n_parsed": 300,
36
+ "published": 81.3,
37
+ "wall_seconds": 314.0,
38
+ "parse_failure_samples": [],
39
+ "ci95": 3.93
40
+ },
41
+ {
42
+ "benchmark": "ocrbench",
43
+ "n": 300,
44
+ "seed": 0,
45
+ "max_image_tokens": 512,
46
+ "max_num_patches": 2048,
47
+ "accuracy": 0.8033,
48
+ "accuracy_given_parsed": 0.8033,
49
+ "parse_failure_rate": 0.0,
50
+ "n_parsed": 300,
51
+ "published": 84.2,
52
+ "wall_seconds": 332.7,
53
+ "parse_failure_samples": [],
54
+ "ci95": 4.5
55
+ },
56
+ {
57
+ "benchmark": "screenspot_v2",
58
+ "n": 300,
59
+ "seed": 0,
60
+ "max_image_tokens": 512,
61
+ "max_num_patches": 2048,
62
+ "accuracy": 0.71,
63
+ "accuracy_given_parsed": 0.7172,
64
+ "parse_failure_rate": 0.01,
65
+ "n_parsed": 297,
66
+ "published": 80.7,
67
+ "wall_seconds": 513.6,
68
+ "parse_failure_samples": [
69
+ "[0.67, 0.1, 710, 740, 140]",
70
+ "[0.15, 0.01, 200, 190, 60]",
71
+ "[0.03, 0.46, 50, 80, 500]"
72
+ ],
73
+ "ci95": 5.13
74
+ },
75
+ {
76
+ "benchmark": "refcoco",
77
+ "n": 300,
78
+ "seed": 0,
79
+ "max_image_tokens": 512,
80
+ "max_num_patches": 2048,
81
+ "accuracy": 0.85,
82
+ "accuracy_given_parsed": 0.85,
83
+ "parse_failure_rate": 0.0,
84
+ "n_parsed": 300,
85
+ "published": 87.9,
86
+ "wall_seconds": 352.8,
87
+ "parse_failure_samples": [],
88
+ "ci95": 4.04
89
+ }
90
+ ],
91
+ "bits_per_weight": 16.0,
92
+ "size_gb": 6.25
93
+ },
94
+ {
95
+ "config": "stock_4bit_vision_bf16",
96
+ "mean_accuracy": 0.8102,
97
+ "benchmarks": [
98
+ {
99
+ "benchmark": "docvqa",
100
+ "n": 300,
101
+ "seed": 0,
102
+ "max_image_tokens": 512,
103
+ "max_num_patches": 2048,
104
+ "accuracy": 0.8578,
105
+ "accuracy_given_parsed": 0.8578,
106
+ "parse_failure_rate": 0.0,
107
+ "n_parsed": 300,
108
+ "published": 91.1,
109
+ "wall_seconds": 373.4,
110
+ "parse_failure_samples": [],
111
+ "ci95": 3.95
112
+ },
113
+ {
114
+ "benchmark": "chartqa",
115
+ "n": 300,
116
+ "seed": 0,
117
+ "max_image_tokens": 512,
118
+ "max_num_patches": 2048,
119
+ "accuracy": 0.8567,
120
+ "accuracy_given_parsed": 0.8567,
121
+ "parse_failure_rate": 0.0,
122
+ "n_parsed": 300,
123
+ "published": 81.3,
124
+ "wall_seconds": 314.0,
125
+ "parse_failure_samples": [],
126
+ "ci95": 3.96
127
+ },
128
+ {
129
+ "benchmark": "ocrbench",
130
+ "n": 300,
131
+ "seed": 0,
132
+ "max_image_tokens": 512,
133
+ "max_num_patches": 2048,
134
+ "accuracy": 0.8067,
135
+ "accuracy_given_parsed": 0.8067,
136
+ "parse_failure_rate": 0.0,
137
+ "n_parsed": 300,
138
+ "published": 84.2,
139
+ "wall_seconds": 285.0,
140
+ "parse_failure_samples": [],
141
+ "ci95": 4.47
142
+ },
143
+ {
144
+ "benchmark": "screenspot_v2",
145
+ "n": 300,
146
+ "seed": 0,
147
+ "max_image_tokens": 512,
148
+ "max_num_patches": 2048,
149
+ "accuracy": 0.68,
150
+ "accuracy_given_parsed": 0.68,
151
+ "parse_failure_rate": 0.0,
152
+ "n_parsed": 300,
153
+ "published": 80.7,
154
+ "wall_seconds": 407.5,
155
+ "parse_failure_samples": [],
156
+ "ci95": 5.28
157
+ },
158
+ {
159
+ "benchmark": "refcoco",
160
+ "n": 300,
161
+ "seed": 0,
162
+ "max_image_tokens": 512,
163
+ "max_num_patches": 2048,
164
+ "accuracy": 0.85,
165
+ "accuracy_given_parsed": 0.85,
166
+ "parse_failure_rate": 0.0,
167
+ "n_parsed": 300,
168
+ "published": 87.9,
169
+ "wall_seconds": 293.9,
170
+ "parse_failure_samples": [],
171
+ "ci95": 4.04
172
+ }
173
+ ],
174
+ "bits_per_weight": 6.07045272519107,
175
+ "size_gb": 2.388,
176
+ "coverage": {
177
+ "embed_head": {
178
+ "total": 1,
179
+ "quantized": 1,
180
+ "params_total": 262144000,
181
+ "params_quantized": 262144000,
182
+ "coverage": 1.0,
183
+ "param_coverage": 1.0,
184
+ "skipped_sample": [],
185
+ "skipped_count": 0
186
+ },
187
+ "backbone": {
188
+ "total": 166,
189
+ "quantized": 166,
190
+ "params_total": 2434793472,
191
+ "params_quantized": 2434793472,
192
+ "coverage": 1.0,
193
+ "param_coverage": 1.0,
194
+ "skipped_sample": [],
195
+ "skipped_count": 0
196
+ },
197
+ "projector": {
198
+ "total": 2,
199
+ "quantized": 0,
200
+ "params_total": 13631488,
201
+ "params_quantized": 0,
202
+ "coverage": 0.0,
203
+ "param_coverage": 0.0,
204
+ "skipped_sample": [
205
+ "multi_modal_projector.linear_1",
206
+ "multi_modal_projector.linear_2"
207
+ ],
208
+ "skipped_count": 2
209
+ },
210
+ "vision": {
211
+ "total": 164,
212
+ "quantized": 0,
213
+ "params_total": 412250112,
214
+ "params_quantized": 0,
215
+ "coverage": 0.0,
216
+ "param_coverage": 0.0,
217
+ "skipped_sample": [
218
+ "vision_tower.embeddings.patch_embedding",
219
+ "vision_tower.embeddings.position_embedding",
220
+ "vision_tower.encoder.layers.0.mlp.fc1",
221
+ "vision_tower.encoder.layers.0.mlp.fc2",
222
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
223
+ ],
224
+ "skipped_count": 164
225
+ }
226
+ }
227
+ },
228
+ {
229
+ "config": "mixed_v6_p6_b4_e4",
230
+ "mean_accuracy": 0.8129,
231
+ "benchmarks": [
232
+ {
233
+ "benchmark": "docvqa",
234
+ "n": 300,
235
+ "seed": 0,
236
+ "max_image_tokens": 512,
237
+ "max_num_patches": 2048,
238
+ "accuracy": 0.8611,
239
+ "accuracy_given_parsed": 0.8611,
240
+ "parse_failure_rate": 0.0,
241
+ "n_parsed": 300,
242
+ "published": 91.1,
243
+ "wall_seconds": 387.5,
244
+ "parse_failure_samples": [],
245
+ "ci95": 3.91
246
+ },
247
+ {
248
+ "benchmark": "chartqa",
249
+ "n": 300,
250
+ "seed": 0,
251
+ "max_image_tokens": 512,
252
+ "max_num_patches": 2048,
253
+ "accuracy": 0.8633,
254
+ "accuracy_given_parsed": 0.8633,
255
+ "parse_failure_rate": 0.0,
256
+ "n_parsed": 300,
257
+ "published": 81.3,
258
+ "wall_seconds": 328.6,
259
+ "parse_failure_samples": [],
260
+ "ci95": 3.89
261
+ },
262
+ {
263
+ "benchmark": "ocrbench",
264
+ "n": 300,
265
+ "seed": 0,
266
+ "max_image_tokens": 512,
267
+ "max_num_patches": 2048,
268
+ "accuracy": 0.8033,
269
+ "accuracy_given_parsed": 0.8033,
270
+ "parse_failure_rate": 0.0,
271
+ "n_parsed": 300,
272
+ "published": 84.2,
273
+ "wall_seconds": 299.4,
274
+ "parse_failure_samples": [],
275
+ "ci95": 4.5
276
+ },
277
+ {
278
+ "benchmark": "screenspot_v2",
279
+ "n": 300,
280
+ "seed": 0,
281
+ "max_image_tokens": 512,
282
+ "max_num_patches": 2048,
283
+ "accuracy": 0.6833,
284
+ "accuracy_given_parsed": 0.6856,
285
+ "parse_failure_rate": 0.0033,
286
+ "n_parsed": 299,
287
+ "published": 80.7,
288
+ "wall_seconds": 422.9,
289
+ "parse_failure_samples": [
290
+ "[0.02, 180, 210, 70, 220]"
291
+ ],
292
+ "ci95": 5.26
293
+ },
294
+ {
295
+ "benchmark": "refcoco",
296
+ "n": 300,
297
+ "seed": 0,
298
+ "max_image_tokens": 512,
299
+ "max_num_patches": 2048,
300
+ "accuracy": 0.8533,
301
+ "accuracy_given_parsed": 0.8533,
302
+ "parse_failure_rate": 0.0,
303
+ "n_parsed": 300,
304
+ "published": 87.9,
305
+ "wall_seconds": 308.6,
306
+ "parse_failure_samples": [],
307
+ "ci95": 4.0
308
+ }
309
+ ],
310
+ "bits_per_weight": 5.185899357518952,
311
+ "size_gb": 2.043,
312
+ "coverage": {
313
+ "embed_head": {
314
+ "total": 1,
315
+ "quantized": 1,
316
+ "params_total": 262144000,
317
+ "params_quantized": 262144000,
318
+ "coverage": 1.0,
319
+ "param_coverage": 1.0,
320
+ "skipped_sample": [],
321
+ "skipped_count": 0
322
+ },
323
+ "backbone": {
324
+ "total": 166,
325
+ "quantized": 166,
326
+ "params_total": 2434793472,
327
+ "params_quantized": 2434793472,
328
+ "coverage": 1.0,
329
+ "param_coverage": 1.0,
330
+ "skipped_sample": [],
331
+ "skipped_count": 0
332
+ },
333
+ "projector": {
334
+ "total": 2,
335
+ "quantized": 2,
336
+ "params_total": 13631488,
337
+ "params_quantized": 13631488,
338
+ "coverage": 1.0,
339
+ "param_coverage": 1.0,
340
+ "skipped_sample": [],
341
+ "skipped_count": 0
342
+ },
343
+ "vision": {
344
+ "total": 164,
345
+ "quantized": 135,
346
+ "params_total": 412250112,
347
+ "params_quantized": 277198848,
348
+ "coverage": 0.8232,
349
+ "param_coverage": 0.6724,
350
+ "skipped_sample": [
351
+ "vision_tower.embeddings.patch_embedding",
352
+ "vision_tower.embeddings.position_embedding",
353
+ "vision_tower.encoder.layers.0.mlp.fc2",
354
+ "vision_tower.encoder.layers.1.mlp.fc2",
355
+ "vision_tower.encoder.layers.10.mlp.fc2"
356
+ ],
357
+ "skipped_count": 29
358
+ }
359
+ }
360
+ },
361
+ {
362
+ "config": "uniform_4bit",
363
+ "mean_accuracy": 0.7934,
364
+ "benchmarks": [
365
+ {
366
+ "benchmark": "docvqa",
367
+ "n": 300,
368
+ "seed": 0,
369
+ "max_image_tokens": 512,
370
+ "max_num_patches": 2048,
371
+ "accuracy": 0.8471,
372
+ "accuracy_given_parsed": 0.8471,
373
+ "parse_failure_rate": 0.0,
374
+ "n_parsed": 300,
375
+ "published": 91.1,
376
+ "wall_seconds": 385.7,
377
+ "parse_failure_samples": [],
378
+ "ci95": 4.07
379
+ },
380
+ {
381
+ "benchmark": "chartqa",
382
+ "n": 300,
383
+ "seed": 0,
384
+ "max_image_tokens": 512,
385
+ "max_num_patches": 2048,
386
+ "accuracy": 0.8367,
387
+ "accuracy_given_parsed": 0.8367,
388
+ "parse_failure_rate": 0.0,
389
+ "n_parsed": 300,
390
+ "published": 81.3,
391
+ "wall_seconds": 326.5,
392
+ "parse_failure_samples": [],
393
+ "ci95": 4.18
394
+ },
395
+ {
396
+ "benchmark": "ocrbench",
397
+ "n": 300,
398
+ "seed": 0,
399
+ "max_image_tokens": 512,
400
+ "max_num_patches": 2048,
401
+ "accuracy": 0.78,
402
+ "accuracy_given_parsed": 0.78,
403
+ "parse_failure_rate": 0.0,
404
+ "n_parsed": 300,
405
+ "published": 84.2,
406
+ "wall_seconds": 297.5,
407
+ "parse_failure_samples": [],
408
+ "ci95": 4.69
409
+ },
410
+ {
411
+ "benchmark": "screenspot_v2",
412
+ "n": 300,
413
+ "seed": 0,
414
+ "max_image_tokens": 512,
415
+ "max_num_patches": 2048,
416
+ "accuracy": 0.6733,
417
+ "accuracy_given_parsed": 0.6779,
418
+ "parse_failure_rate": 0.0067,
419
+ "n_parsed": 298,
420
+ "published": 80.7,
421
+ "wall_seconds": 422.3,
422
+ "parse_failure_samples": [
423
+ "[show]",
424
+ "[0.16, 0.02, 200, 200, 60]"
425
+ ],
426
+ "ci95": 5.31
427
+ },
428
+ {
429
+ "benchmark": "refcoco",
430
+ "n": 300,
431
+ "seed": 0,
432
+ "max_image_tokens": 512,
433
+ "max_num_patches": 2048,
434
+ "accuracy": 0.83,
435
+ "accuracy_given_parsed": 0.83,
436
+ "parse_failure_rate": 0.0,
437
+ "n_parsed": 300,
438
+ "published": 87.9,
439
+ "wall_seconds": 307.2,
440
+ "parse_failure_samples": [],
441
+ "ci95": 4.25
442
+ }
443
+ ],
444
+ "bits_per_weight": 4.99967759590377,
445
+ "size_gb": 1.97,
446
+ "coverage": {
447
+ "embed_head": {
448
+ "total": 1,
449
+ "quantized": 1,
450
+ "params_total": 262144000,
451
+ "params_quantized": 262144000,
452
+ "coverage": 1.0,
453
+ "param_coverage": 1.0,
454
+ "skipped_sample": [],
455
+ "skipped_count": 0
456
+ },
457
+ "backbone": {
458
+ "total": 166,
459
+ "quantized": 166,
460
+ "params_total": 2434793472,
461
+ "params_quantized": 2434793472,
462
+ "coverage": 1.0,
463
+ "param_coverage": 1.0,
464
+ "skipped_sample": [],
465
+ "skipped_count": 0
466
+ },
467
+ "projector": {
468
+ "total": 2,
469
+ "quantized": 2,
470
+ "params_total": 13631488,
471
+ "params_quantized": 13631488,
472
+ "coverage": 1.0,
473
+ "param_coverage": 1.0,
474
+ "skipped_sample": [],
475
+ "skipped_count": 0
476
+ },
477
+ "vision": {
478
+ "total": 164,
479
+ "quantized": 135,
480
+ "params_total": 412250112,
481
+ "params_quantized": 277198848,
482
+ "coverage": 0.8232,
483
+ "param_coverage": 0.6724,
484
+ "skipped_sample": [
485
+ "vision_tower.embeddings.patch_embedding",
486
+ "vision_tower.embeddings.position_embedding",
487
+ "vision_tower.encoder.layers.0.mlp.fc2",
488
+ "vision_tower.encoder.layers.1.mlp.fc2",
489
+ "vision_tower.encoder.layers.10.mlp.fc2"
490
+ ],
491
+ "skipped_count": 29
492
+ }
493
+ }
494
+ },
495
+ {
496
+ "config": "only_vision_4bit",
497
+ "mean_accuracy": 0.808,
498
+ "benchmarks": [
499
+ {
500
+ "benchmark": "docvqa",
501
+ "n": 300,
502
+ "seed": 0,
503
+ "max_image_tokens": 512,
504
+ "max_num_patches": 2048,
505
+ "accuracy": 0.8436,
506
+ "accuracy_given_parsed": 0.8436,
507
+ "parse_failure_rate": 0.0,
508
+ "n_parsed": 300,
509
+ "published": 91.1,
510
+ "wall_seconds": 391.4,
511
+ "parse_failure_samples": [],
512
+ "ci95": 4.11
513
+ },
514
+ {
515
+ "benchmark": "chartqa",
516
+ "n": 300,
517
+ "seed": 0,
518
+ "max_image_tokens": 512,
519
+ "max_num_patches": 2048,
520
+ "accuracy": 0.8533,
521
+ "accuracy_given_parsed": 0.8533,
522
+ "parse_failure_rate": 0.0,
523
+ "n_parsed": 300,
524
+ "published": 81.3,
525
+ "wall_seconds": 324.2,
526
+ "parse_failure_samples": [],
527
+ "ci95": 4.0
528
+ },
529
+ {
530
+ "benchmark": "ocrbench",
531
+ "n": 300,
532
+ "seed": 0,
533
+ "max_image_tokens": 512,
534
+ "max_num_patches": 2048,
535
+ "accuracy": 0.7933,
536
+ "accuracy_given_parsed": 0.7933,
537
+ "parse_failure_rate": 0.0,
538
+ "n_parsed": 300,
539
+ "published": 84.2,
540
+ "wall_seconds": 344.9,
541
+ "parse_failure_samples": [],
542
+ "ci95": 4.58
543
+ },
544
+ {
545
+ "benchmark": "screenspot_v2",
546
+ "n": 300,
547
+ "seed": 0,
548
+ "max_image_tokens": 512,
549
+ "max_num_patches": 2048,
550
+ "accuracy": 0.6967,
551
+ "accuracy_given_parsed": 0.7061,
552
+ "parse_failure_rate": 0.0133,
553
+ "n_parsed": 296,
554
+ "published": 80.7,
555
+ "wall_seconds": 516.8,
556
+ "parse_failure_samples": [
557
+ "[0.67, 0.1, 710, 740, 140]",
558
+ "[0.02, 170, 70, 50, 220]",
559
+ "[0.15, 0.02, 20, 180, 60]",
560
+ "[0.01, 0.45, 60, 70, 490]"
561
+ ],
562
+ "ci95": 5.2
563
+ },
564
+ {
565
+ "benchmark": "refcoco",
566
+ "n": 300,
567
+ "seed": 0,
568
+ "max_image_tokens": 512,
569
+ "max_num_patches": 2048,
570
+ "accuracy": 0.8533,
571
+ "accuracy_given_parsed": 0.8533,
572
+ "parse_failure_rate": 0.0,
573
+ "n_parsed": 300,
574
+ "published": 87.9,
575
+ "wall_seconds": 360.6,
576
+ "parse_failure_samples": [],
577
+ "ci95": 4.0
578
+ }
579
+ ],
580
+ "bits_per_weight": 14.979413095663134,
581
+ "size_gb": 5.867,
582
+ "coverage": {
583
+ "embed_head": {
584
+ "total": 1,
585
+ "quantized": 0,
586
+ "params_total": 262144000,
587
+ "params_quantized": 0,
588
+ "coverage": 0.0,
589
+ "param_coverage": 0.0,
590
+ "skipped_sample": [
591
+ "language_model.model.embed_tokens"
592
+ ],
593
+ "skipped_count": 1
594
+ },
595
+ "backbone": {
596
+ "total": 166,
597
+ "quantized": 0,
598
+ "params_total": 2434793472,
599
+ "params_quantized": 0,
600
+ "coverage": 0.0,
601
+ "param_coverage": 0.0,
602
+ "skipped_sample": [
603
+ "language_model.model.layers.0.conv.in_proj",
604
+ "language_model.model.layers.0.conv.out_proj",
605
+ "language_model.model.layers.0.feed_forward.w1",
606
+ "language_model.model.layers.0.feed_forward.w2",
607
+ "language_model.model.layers.0.feed_forward.w3"
608
+ ],
609
+ "skipped_count": 166
610
+ },
611
+ "projector": {
612
+ "total": 2,
613
+ "quantized": 0,
614
+ "params_total": 13631488,
615
+ "params_quantized": 0,
616
+ "coverage": 0.0,
617
+ "param_coverage": 0.0,
618
+ "skipped_sample": [
619
+ "multi_modal_projector.linear_1",
620
+ "multi_modal_projector.linear_2"
621
+ ],
622
+ "skipped_count": 2
623
+ },
624
+ "vision": {
625
+ "total": 164,
626
+ "quantized": 135,
627
+ "params_total": 412250112,
628
+ "params_quantized": 277198848,
629
+ "coverage": 0.8232,
630
+ "param_coverage": 0.6724,
631
+ "skipped_sample": [
632
+ "vision_tower.embeddings.patch_embedding",
633
+ "vision_tower.embeddings.position_embedding",
634
+ "vision_tower.encoder.layers.0.mlp.fc2",
635
+ "vision_tower.encoder.layers.1.mlp.fc2",
636
+ "vision_tower.encoder.layers.10.mlp.fc2"
637
+ ],
638
+ "skipped_count": 29
639
+ }
640
+ }
641
+ }
642
+ ]
643
+ }
published_quant_survey.json ADDED
@@ -0,0 +1,838 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "surveyed": 56,
3
+ "unreadable": 81,
4
+ "with_vision_quantized": 0,
5
+ "conclusion": "No published quant quantizes the vision tower; the coverage gate is a methodology requirement, and vision quantization is unmeasured ground.",
6
+ "repos": [
7
+ {
8
+ "repo": "Azaz666/LFM2-VL-1.6B-INT4-quantized",
9
+ "bits": null,
10
+ "group_size": null,
11
+ "per_path_entries": 0,
12
+ "vision_entries": 0,
13
+ "vision_quantized": false,
14
+ "skip_vision_flag": null
15
+ },
16
+ {
17
+ "repo": "Azaz666/LFM2-VL-3B-INT4-quantized",
18
+ "bits": null,
19
+ "group_size": null,
20
+ "per_path_entries": 0,
21
+ "vision_entries": 0,
22
+ "vision_quantized": false,
23
+ "skip_vision_flag": null
24
+ },
25
+ {
26
+ "repo": "Dadm-n/LFM2.5-VL-450M-mlx",
27
+ "bits": null,
28
+ "group_size": null,
29
+ "per_path_entries": 0,
30
+ "vision_entries": 0,
31
+ "vision_quantized": false,
32
+ "skip_vision_flag": null
33
+ },
34
+ {
35
+ "repo": "EZCon/LFM2.5-VL-1.6B-4bit-g32-mxfp4-mlx",
36
+ "bits": 4,
37
+ "group_size": 32,
38
+ "per_path_entries": 0,
39
+ "vision_entries": 0,
40
+ "vision_quantized": false,
41
+ "skip_vision_flag": null
42
+ },
43
+ {
44
+ "repo": "EZCon/LFM2.5-VL-1.6B-4bit-mlx",
45
+ "bits": 4,
46
+ "group_size": 64,
47
+ "per_path_entries": 0,
48
+ "vision_entries": 0,
49
+ "vision_quantized": false,
50
+ "skip_vision_flag": null
51
+ },
52
+ {
53
+ "repo": "EZCon/LFM2.5-VL-1.6B-8bit-mlx",
54
+ "bits": 8,
55
+ "group_size": 64,
56
+ "per_path_entries": 0,
57
+ "vision_entries": 0,
58
+ "vision_quantized": false,
59
+ "skip_vision_flag": null
60
+ },
61
+ {
62
+ "repo": "EZCon/LFM2.5-VL-1.6B-mlx",
63
+ "bits": null,
64
+ "group_size": null,
65
+ "per_path_entries": 0,
66
+ "vision_entries": 0,
67
+ "vision_quantized": false,
68
+ "skip_vision_flag": null
69
+ },
70
+ {
71
+ "repo": "LiquidAI/LFM2.5-VL-3B-MLX-4bit",
72
+ "bits": 4,
73
+ "group_size": 64,
74
+ "per_path_entries": 0,
75
+ "vision_entries": 0,
76
+ "vision_quantized": false,
77
+ "skip_vision_flag": null
78
+ },
79
+ {
80
+ "repo": "LiquidAI/LFM2.5-VL-3B-MLX-5bit",
81
+ "bits": 5,
82
+ "group_size": 64,
83
+ "per_path_entries": 1,
84
+ "vision_entries": 0,
85
+ "vision_quantized": false,
86
+ "skip_vision_flag": null
87
+ },
88
+ {
89
+ "repo": "LiquidAI/LFM2.5-VL-3B-MLX-6bit",
90
+ "bits": 6,
91
+ "group_size": 64,
92
+ "per_path_entries": 0,
93
+ "vision_entries": 0,
94
+ "vision_quantized": false,
95
+ "skip_vision_flag": null
96
+ },
97
+ {
98
+ "repo": "LiquidAI/LFM2.5-VL-3B-MLX-8bit",
99
+ "bits": 8,
100
+ "group_size": 64,
101
+ "per_path_entries": 0,
102
+ "vision_entries": 0,
103
+ "vision_quantized": false,
104
+ "skip_vision_flag": null
105
+ },
106
+ {
107
+ "repo": "LiquidAI/LFM2.5-VL-3B-MLX-bf16",
108
+ "bits": null,
109
+ "group_size": null,
110
+ "per_path_entries": 0,
111
+ "vision_entries": 0,
112
+ "vision_quantized": false,
113
+ "skip_vision_flag": null
114
+ },
115
+ {
116
+ "repo": "LiquidAI/LFM2.5-VL-450M-MLX-4bit",
117
+ "bits": 4,
118
+ "group_size": 64,
119
+ "per_path_entries": 0,
120
+ "vision_entries": 0,
121
+ "vision_quantized": false,
122
+ "skip_vision_flag": null
123
+ },
124
+ {
125
+ "repo": "LiquidAI/LFM2.5-VL-450M-MLX-5bit",
126
+ "bits": 5,
127
+ "group_size": 64,
128
+ "per_path_entries": 0,
129
+ "vision_entries": 0,
130
+ "vision_quantized": false,
131
+ "skip_vision_flag": null
132
+ },
133
+ {
134
+ "repo": "LiquidAI/LFM2.5-VL-450M-MLX-6bit",
135
+ "bits": 6,
136
+ "group_size": 64,
137
+ "per_path_entries": 0,
138
+ "vision_entries": 0,
139
+ "vision_quantized": false,
140
+ "skip_vision_flag": null
141
+ },
142
+ {
143
+ "repo": "LiquidAI/LFM2.5-VL-450M-MLX-8bit",
144
+ "bits": 8,
145
+ "group_size": 64,
146
+ "per_path_entries": 0,
147
+ "vision_entries": 0,
148
+ "vision_quantized": false,
149
+ "skip_vision_flag": null
150
+ },
151
+ {
152
+ "repo": "LiquidAI/LFM2.5-VL-450M-MLX-bf16",
153
+ "bits": null,
154
+ "group_size": null,
155
+ "per_path_entries": 0,
156
+ "vision_entries": 0,
157
+ "vision_quantized": false,
158
+ "skip_vision_flag": null
159
+ },
160
+ {
161
+ "repo": "MuXodious/LFM2.5-VL-1.6B-absolute-heresy-MPOA-mlx-8Bit",
162
+ "bits": 8,
163
+ "group_size": 64,
164
+ "per_path_entries": 0,
165
+ "vision_entries": 0,
166
+ "vision_quantized": false,
167
+ "skip_vision_flag": null
168
+ },
169
+ {
170
+ "repo": "MuXodious/LFM2.5-VL-1.6B-absolute-heresy-mlx-4Bit",
171
+ "bits": 4,
172
+ "group_size": 64,
173
+ "per_path_entries": 0,
174
+ "vision_entries": 0,
175
+ "vision_quantized": false,
176
+ "skip_vision_flag": null
177
+ },
178
+ {
179
+ "repo": "MuXodious/LFM2.5-VL-1.6B-absolute-heresy-mlx-8Bit",
180
+ "bits": 8,
181
+ "group_size": 64,
182
+ "per_path_entries": 0,
183
+ "vision_entries": 0,
184
+ "vision_quantized": false,
185
+ "skip_vision_flag": null
186
+ },
187
+ {
188
+ "repo": "abdoutobblaze99/LeafScope-LFM2.5-VL-450M-Q8-gguf",
189
+ "bits": null,
190
+ "group_size": null,
191
+ "per_path_entries": 0,
192
+ "vision_entries": 0,
193
+ "vision_quantized": false,
194
+ "skip_vision_flag": null
195
+ },
196
+ {
197
+ "repo": "abdoutobblaze99/LeafScope-LFM2.5-VL-450M-f16-gguf",
198
+ "bits": null,
199
+ "group_size": null,
200
+ "per_path_entries": 0,
201
+ "vision_entries": 0,
202
+ "vision_quantized": false,
203
+ "skip_vision_flag": null
204
+ },
205
+ {
206
+ "repo": "alexgusevski/LFM2.5-VL-1.6B-mlx",
207
+ "bits": null,
208
+ "group_size": null,
209
+ "per_path_entries": 0,
210
+ "vision_entries": 0,
211
+ "vision_quantized": false,
212
+ "skip_vision_flag": null
213
+ },
214
+ {
215
+ "repo": "alexgusevski/LFM2.5-VL-1.6B-q2-mlx",
216
+ "bits": 2,
217
+ "group_size": 64,
218
+ "per_path_entries": 0,
219
+ "vision_entries": 0,
220
+ "vision_quantized": false,
221
+ "skip_vision_flag": null
222
+ },
223
+ {
224
+ "repo": "alexgusevski/LFM2.5-VL-1.6B-q3-mlx",
225
+ "bits": 3,
226
+ "group_size": 64,
227
+ "per_path_entries": 0,
228
+ "vision_entries": 0,
229
+ "vision_quantized": false,
230
+ "skip_vision_flag": null
231
+ },
232
+ {
233
+ "repo": "alexgusevski/LFM2.5-VL-1.6B-q4-mlx",
234
+ "bits": 4,
235
+ "group_size": 64,
236
+ "per_path_entries": 0,
237
+ "vision_entries": 0,
238
+ "vision_quantized": false,
239
+ "skip_vision_flag": null
240
+ },
241
+ {
242
+ "repo": "alexgusevski/LFM2.5-VL-1.6B-q6-mlx",
243
+ "bits": 6,
244
+ "group_size": 64,
245
+ "per_path_entries": 0,
246
+ "vision_entries": 0,
247
+ "vision_quantized": false,
248
+ "skip_vision_flag": null
249
+ },
250
+ {
251
+ "repo": "alexgusevski/LFM2.5-VL-1.6B-q8-mlx",
252
+ "bits": 8,
253
+ "group_size": 64,
254
+ "per_path_entries": 0,
255
+ "vision_entries": 0,
256
+ "vision_quantized": false,
257
+ "skip_vision_flag": null
258
+ },
259
+ {
260
+ "repo": "exolabs/LFM2.5-8B-A1B-Q4_K_M-dequant-bf16-vllm",
261
+ "bits": null,
262
+ "group_size": null,
263
+ "per_path_entries": 0,
264
+ "vision_entries": 0,
265
+ "vision_quantized": false,
266
+ "skip_vision_flag": null
267
+ },
268
+ {
269
+ "repo": "exolabs/LFM2.5-8B-A1B-Q8_0-dequant-bf16-vllm",
270
+ "bits": null,
271
+ "group_size": null,
272
+ "per_path_entries": 0,
273
+ "vision_entries": 0,
274
+ "vision_quantized": false,
275
+ "skip_vision_flag": null
276
+ },
277
+ {
278
+ "repo": "lmstudio-community/LFM2.5-VL-1.6B-MLX-4bit",
279
+ "bits": 4,
280
+ "group_size": 64,
281
+ "per_path_entries": 0,
282
+ "vision_entries": 0,
283
+ "vision_quantized": false,
284
+ "skip_vision_flag": null
285
+ },
286
+ {
287
+ "repo": "lmstudio-community/LFM2.5-VL-1.6B-MLX-6bit",
288
+ "bits": 6,
289
+ "group_size": 64,
290
+ "per_path_entries": 0,
291
+ "vision_entries": 0,
292
+ "vision_quantized": false,
293
+ "skip_vision_flag": null
294
+ },
295
+ {
296
+ "repo": "lmstudio-community/LFM2.5-VL-1.6B-MLX-8bit",
297
+ "bits": 8,
298
+ "group_size": 64,
299
+ "per_path_entries": 0,
300
+ "vision_entries": 0,
301
+ "vision_quantized": false,
302
+ "skip_vision_flag": null
303
+ },
304
+ {
305
+ "repo": "mlx-community/LFM2-VL-1.6B-4bit",
306
+ "bits": 4,
307
+ "group_size": 64,
308
+ "per_path_entries": 0,
309
+ "vision_entries": 0,
310
+ "vision_quantized": false,
311
+ "skip_vision_flag": null
312
+ },
313
+ {
314
+ "repo": "mlx-community/LFM2-VL-1.6B-5bit",
315
+ "bits": 5,
316
+ "group_size": 64,
317
+ "per_path_entries": 0,
318
+ "vision_entries": 0,
319
+ "vision_quantized": false,
320
+ "skip_vision_flag": null
321
+ },
322
+ {
323
+ "repo": "mlx-community/LFM2-VL-1.6B-6bit",
324
+ "bits": 6,
325
+ "group_size": 64,
326
+ "per_path_entries": 0,
327
+ "vision_entries": 0,
328
+ "vision_quantized": false,
329
+ "skip_vision_flag": null
330
+ },
331
+ {
332
+ "repo": "mlx-community/LFM2-VL-1.6B-8bit",
333
+ "bits": 8,
334
+ "group_size": 64,
335
+ "per_path_entries": 0,
336
+ "vision_entries": 0,
337
+ "vision_quantized": false,
338
+ "skip_vision_flag": null
339
+ },
340
+ {
341
+ "repo": "mlx-community/LFM2-VL-1.6B-bf16",
342
+ "bits": null,
343
+ "group_size": null,
344
+ "per_path_entries": 0,
345
+ "vision_entries": 0,
346
+ "vision_quantized": false,
347
+ "skip_vision_flag": null
348
+ },
349
+ {
350
+ "repo": "mlx-community/LFM2-VL-3B-4bit",
351
+ "bits": 4,
352
+ "group_size": 64,
353
+ "per_path_entries": 0,
354
+ "vision_entries": 0,
355
+ "vision_quantized": false,
356
+ "skip_vision_flag": null
357
+ },
358
+ {
359
+ "repo": "mlx-community/LFM2-VL-3B-5bit",
360
+ "bits": 5,
361
+ "group_size": 64,
362
+ "per_path_entries": 0,
363
+ "vision_entries": 0,
364
+ "vision_quantized": false,
365
+ "skip_vision_flag": null
366
+ },
367
+ {
368
+ "repo": "mlx-community/LFM2-VL-3B-6bit",
369
+ "bits": 6,
370
+ "group_size": 64,
371
+ "per_path_entries": 0,
372
+ "vision_entries": 0,
373
+ "vision_quantized": false,
374
+ "skip_vision_flag": null
375
+ },
376
+ {
377
+ "repo": "mlx-community/LFM2-VL-3B-8bit",
378
+ "bits": 8,
379
+ "group_size": 64,
380
+ "per_path_entries": 0,
381
+ "vision_entries": 0,
382
+ "vision_quantized": false,
383
+ "skip_vision_flag": null
384
+ },
385
+ {
386
+ "repo": "mlx-community/LFM2-VL-3B-bf16",
387
+ "bits": null,
388
+ "group_size": null,
389
+ "per_path_entries": 0,
390
+ "vision_entries": 0,
391
+ "vision_quantized": false,
392
+ "skip_vision_flag": null
393
+ },
394
+ {
395
+ "repo": "mlx-community/LFM2-VL-450M-4bit",
396
+ "bits": 4,
397
+ "group_size": 64,
398
+ "per_path_entries": 0,
399
+ "vision_entries": 0,
400
+ "vision_quantized": false,
401
+ "skip_vision_flag": null
402
+ },
403
+ {
404
+ "repo": "mlx-community/LFM2-VL-450M-5bit",
405
+ "bits": 5,
406
+ "group_size": 64,
407
+ "per_path_entries": 0,
408
+ "vision_entries": 0,
409
+ "vision_quantized": false,
410
+ "skip_vision_flag": null
411
+ },
412
+ {
413
+ "repo": "mlx-community/LFM2-VL-450M-8bit",
414
+ "bits": 8,
415
+ "group_size": 64,
416
+ "per_path_entries": 0,
417
+ "vision_entries": 0,
418
+ "vision_quantized": false,
419
+ "skip_vision_flag": null
420
+ },
421
+ {
422
+ "repo": "mlx-community/LFM2-VL-450M-bf16",
423
+ "bits": null,
424
+ "group_size": null,
425
+ "per_path_entries": 0,
426
+ "vision_entries": 0,
427
+ "vision_quantized": false,
428
+ "skip_vision_flag": null
429
+ },
430
+ {
431
+ "repo": "mlx-community/LFM2.5-VL-1.6B-4bit",
432
+ "bits": 4,
433
+ "group_size": 64,
434
+ "per_path_entries": 0,
435
+ "vision_entries": 0,
436
+ "vision_quantized": false,
437
+ "skip_vision_flag": null
438
+ },
439
+ {
440
+ "repo": "mlx-community/LFM2.5-VL-1.6B-5bit",
441
+ "bits": 5,
442
+ "group_size": 64,
443
+ "per_path_entries": 0,
444
+ "vision_entries": 0,
445
+ "vision_quantized": false,
446
+ "skip_vision_flag": null
447
+ },
448
+ {
449
+ "repo": "mlx-community/LFM2.5-VL-1.6B-6bit",
450
+ "bits": 6,
451
+ "group_size": 64,
452
+ "per_path_entries": 0,
453
+ "vision_entries": 0,
454
+ "vision_quantized": false,
455
+ "skip_vision_flag": null
456
+ },
457
+ {
458
+ "repo": "mlx-community/LFM2.5-VL-1.6B-8bit",
459
+ "bits": 8,
460
+ "group_size": 64,
461
+ "per_path_entries": 0,
462
+ "vision_entries": 0,
463
+ "vision_quantized": false,
464
+ "skip_vision_flag": null
465
+ },
466
+ {
467
+ "repo": "mlx-community/LFM2.5-VL-1.6B-bf16",
468
+ "bits": null,
469
+ "group_size": null,
470
+ "per_path_entries": 0,
471
+ "vision_entries": 0,
472
+ "vision_quantized": false,
473
+ "skip_vision_flag": null
474
+ },
475
+ {
476
+ "repo": "mlx-community/LFM2.5-VL-450M-6bit",
477
+ "bits": 6,
478
+ "group_size": 64,
479
+ "per_path_entries": 0,
480
+ "vision_entries": 0,
481
+ "vision_quantized": false,
482
+ "skip_vision_flag": null
483
+ },
484
+ {
485
+ "repo": "mlx-community/LFM2.5-VL-450M-8bit",
486
+ "bits": 8,
487
+ "group_size": 64,
488
+ "per_path_entries": 0,
489
+ "vision_entries": 0,
490
+ "vision_quantized": false,
491
+ "skip_vision_flag": null
492
+ },
493
+ {
494
+ "repo": "rdtand/LFM2.5-8B-A1B-PrismaQuant-6.5bit-vllm",
495
+ "bits": null,
496
+ "group_size": null,
497
+ "per_path_entries": 0,
498
+ "vision_entries": 0,
499
+ "vision_quantized": false,
500
+ "skip_vision_flag": null
501
+ },
502
+ {
503
+ "repo": "z0lo/LFM2.5-VL-1.6B-Extract-4bit",
504
+ "bits": 4,
505
+ "group_size": 64,
506
+ "per_path_entries": 0,
507
+ "vision_entries": 0,
508
+ "vision_quantized": false,
509
+ "skip_vision_flag": null
510
+ }
511
+ ],
512
+ "errors": [
513
+ {
514
+ "repo": "AX1Y2JP/LFM2.5-VL-3B-heretic-GGUF",
515
+ "error": "RemoteEntryNotFoundError"
516
+ },
517
+ {
518
+ "repo": "DevQuasar/LiquidAI.LFM2-VL-3B-GGUF",
519
+ "error": "RemoteEntryNotFoundError"
520
+ },
521
+ {
522
+ "repo": "DevQuasar/LiquidAI.LFM2.5-VL-1.6B-GGUF",
523
+ "error": "RemoteEntryNotFoundError"
524
+ },
525
+ {
526
+ "repo": "DiffusionFanatic1/LFM2-VL-3B-heretic-Q8_0-GGUF",
527
+ "error": "RemoteEntryNotFoundError"
528
+ },
529
+ {
530
+ "repo": "FadedRedStar/LFM2.5-VL-1.6B-heretic-GGUF",
531
+ "error": "RemoteEntryNotFoundError"
532
+ },
533
+ {
534
+ "repo": "FadedRedStar/LFM2.5-VL-1.6B-heretic-imatrix-GGUF",
535
+ "error": "RemoteEntryNotFoundError"
536
+ },
537
+ {
538
+ "repo": "FadedRedStar/LFM2.5-VL-450M-heretic-GGUF",
539
+ "error": "RemoteEntryNotFoundError"
540
+ },
541
+ {
542
+ "repo": "FadedRedStar/LFM2.5-VL-450M-heretic-imatrix-GGUF",
543
+ "error": "RemoteEntryNotFoundError"
544
+ },
545
+ {
546
+ "repo": "LiquidAI/LFM2-VL-1.6B-GGUF",
547
+ "error": "RemoteEntryNotFoundError"
548
+ },
549
+ {
550
+ "repo": "LiquidAI/LFM2-VL-3B-GGUF",
551
+ "error": "RemoteEntryNotFoundError"
552
+ },
553
+ {
554
+ "repo": "LiquidAI/LFM2-VL-450M-GGUF",
555
+ "error": "RemoteEntryNotFoundError"
556
+ },
557
+ {
558
+ "repo": "LiquidAI/LFM2.5-VL-1.6B-Extract-GGUF",
559
+ "error": "RemoteEntryNotFoundError"
560
+ },
561
+ {
562
+ "repo": "LiquidAI/LFM2.5-VL-1.6B-GGUF",
563
+ "error": "RemoteEntryNotFoundError"
564
+ },
565
+ {
566
+ "repo": "LiquidAI/LFM2.5-VL-3B-GGUF",
567
+ "error": "RemoteEntryNotFoundError"
568
+ },
569
+ {
570
+ "repo": "LiquidAI/LFM2.5-VL-450M-Extract-GGUF",
571
+ "error": "RemoteEntryNotFoundError"
572
+ },
573
+ {
574
+ "repo": "LiquidAI/LFM2.5-VL-450M-GGUF",
575
+ "error": "RemoteEntryNotFoundError"
576
+ },
577
+ {
578
+ "repo": "MuXodious/LFM2-VL-3B-heretic-GGUF",
579
+ "error": "RemoteEntryNotFoundError"
580
+ },
581
+ {
582
+ "repo": "MuXodious/LFM2-VL-3B-heretic-imatrix-GGUF",
583
+ "error": "RemoteEntryNotFoundError"
584
+ },
585
+ {
586
+ "repo": "MuXodious/LFM2.5-VL-1.6B-absolute-heresy-GGUF",
587
+ "error": "RemoteEntryNotFoundError"
588
+ },
589
+ {
590
+ "repo": "NobodyWho/LFM2.5-VL-1.6B-GGUF",
591
+ "error": "RemoteEntryNotFoundError"
592
+ },
593
+ {
594
+ "repo": "NobodyWho/LFM2.5-VL-450M-GGUF",
595
+ "error": "RemoteEntryNotFoundError"
596
+ },
597
+ {
598
+ "repo": "Quorum-ML/LFM2.5-VL-450M-PharmaOCR-GGUF",
599
+ "error": "RemoteEntryNotFoundError"
600
+ },
601
+ {
602
+ "repo": "RikkaBotan/lfm2-vl-ja-finetuned-enmt1ep-jamt10eponall-vqa_GGUF",
603
+ "error": "RemoteEntryNotFoundError"
604
+ },
605
+ {
606
+ "repo": "SC117/LFM2.5-VL-3B-Uncensored-GGUF",
607
+ "error": "RemoteEntryNotFoundError"
608
+ },
609
+ {
610
+ "repo": "Sciamlab/LFM2.5-VL-450M-landslide-GGUF",
611
+ "error": "RemoteEntryNotFoundError"
612
+ },
613
+ {
614
+ "repo": "Shoozes/lfm2.5-450m-vl-orbit-satellite",
615
+ "error": "RemoteEntryNotFoundError"
616
+ },
617
+ {
618
+ "repo": "Tobivictor/LFM2-VL-1.6B-GGUF",
619
+ "error": "RemoteEntryNotFoundError"
620
+ },
621
+ {
622
+ "repo": "VladaHF123/LFM2.5-VL-1.6B-Extract-GGUF",
623
+ "error": "RemoteEntryNotFoundError"
624
+ },
625
+ {
626
+ "repo": "ZuzeTt/LFM2-VL-3B-heretic-Imatrix-GGUF",
627
+ "error": "RemoteEntryNotFoundError"
628
+ },
629
+ {
630
+ "repo": "ZuzeTt/LFM2.5-VL-1.6B-GGUF",
631
+ "error": "RemoteEntryNotFoundError"
632
+ },
633
+ {
634
+ "repo": "ZuzeTt/LFM2.5-VL-450M-GGUF",
635
+ "error": "RemoteEntryNotFoundError"
636
+ },
637
+ {
638
+ "repo": "alecccdd/LFM2.5-VL-450M-ratebv-large-sigmax-100-Q8_0-GGUF",
639
+ "error": "RemoteEntryNotFoundError"
640
+ },
641
+ {
642
+ "repo": "aoiandroid/LFM2-VL-1.6B-GGUF",
643
+ "error": "RemoteEntryNotFoundError"
644
+ },
645
+ {
646
+ "repo": "avinashhm/LFM2-VL-450M-quantized",
647
+ "error": "RemoteEntryNotFoundError"
648
+ },
649
+ {
650
+ "repo": "bartowski/LiquidAI_LFM2-VL-1.6B-GGUF",
651
+ "error": "RemoteEntryNotFoundError"
652
+ },
653
+ {
654
+ "repo": "bartowski/LiquidAI_LFM2-VL-450M-GGUF",
655
+ "error": "RemoteEntryNotFoundError"
656
+ },
657
+ {
658
+ "repo": "bartowski/LiquidAI_LFM2.5-VL-3B-GGUF",
659
+ "error": "RemoteEntryNotFoundError"
660
+ },
661
+ {
662
+ "repo": "bitsoko/LFM2-VL-1.6B-GGUF",
663
+ "error": "RemoteEntryNotFoundError"
664
+ },
665
+ {
666
+ "repo": "ebybucuresteanu/LFM2.5-VL-1.6B-Q4_0.gguf",
667
+ "error": "RemoteEntryNotFoundError"
668
+ },
669
+ {
670
+ "repo": "enacimie/LFM2-VL-450M-Q4_K_M-GGUF",
671
+ "error": "RemoteEntryNotFoundError"
672
+ },
673
+ {
674
+ "repo": "ermiaazarkhalili/LFM2.5-VL-1.6B-SFT-Fable5-Glint-GGUF",
675
+ "error": "RemoteEntryNotFoundError"
676
+ },
677
+ {
678
+ "repo": "ermiaazarkhalili/LFM2.5-VL-450M-SFT-Fable5-Glint-GGUF",
679
+ "error": "RemoteEntryNotFoundError"
680
+ },
681
+ {
682
+ "repo": "gabriellarson/LFM2-VL-1.6B-GGUF",
683
+ "error": "RemoteEntryNotFoundError"
684
+ },
685
+ {
686
+ "repo": "gabriellarson/LFM2-VL-450M-GGUF",
687
+ "error": "RemoteEntryNotFoundError"
688
+ },
689
+ {
690
+ "repo": "ggml-org/LFM2-VL-450M-GGUF",
691
+ "error": "RemoteEntryNotFoundError"
692
+ },
693
+ {
694
+ "repo": "harishforaiandml/LFM2.5-VL-450M-Q2_K-GGUF",
695
+ "error": "RemoteEntryNotFoundError"
696
+ },
697
+ {
698
+ "repo": "jmainformatique/LFM2-VL-450M-Q8_0-GGUF",
699
+ "error": "RemoteEntryNotFoundError"
700
+ },
701
+ {
702
+ "repo": "jpmarindiaz/lfm2.5-vl-450m-quixote-GGUF",
703
+ "error": "RemoteEntryNotFoundError"
704
+ },
705
+ {
706
+ "repo": "lmstudio-community/LFM2-VL-1.6B-GGUF",
707
+ "error": "RemoteEntryNotFoundError"
708
+ },
709
+ {
710
+ "repo": "lmstudio-community/LFM2-VL-450M-GGUF",
711
+ "error": "RemoteEntryNotFoundError"
712
+ },
713
+ {
714
+ "repo": "lmstudio-community/LFM2.5-VL-1.6B-GGUF",
715
+ "error": "RemoteEntryNotFoundError"
716
+ },
717
+ {
718
+ "repo": "luksamuk/LFM2.5-VL-450M-Hand-Tracking-GGUF",
719
+ "error": "RemoteEntryNotFoundError"
720
+ },
721
+ {
722
+ "repo": "mlx-community/LFM2-VL-450M-6bit",
723
+ "error": "RemoteEntryNotFoundError"
724
+ },
725
+ {
726
+ "repo": "mosama/LFM2-VL-450M-GGUF",
727
+ "error": "RemoteEntryNotFoundError"
728
+ },
729
+ {
730
+ "repo": "mradermacher/Japanese-Receipt-VL-lfm2-450M-GGUF",
731
+ "error": "RemoteEntryNotFoundError"
732
+ },
733
+ {
734
+ "repo": "mradermacher/Japanese-Receipt-VL-lfm2-450M-v2-GGUF",
735
+ "error": "RemoteEntryNotFoundError"
736
+ },
737
+ {
738
+ "repo": "mradermacher/LFM2-VL-1.6B-GGUF",
739
+ "error": "RemoteEntryNotFoundError"
740
+ },
741
+ {
742
+ "repo": "mradermacher/LFM2-VL-1.6B-i1-GGUF",
743
+ "error": "RemoteEntryNotFoundError"
744
+ },
745
+ {
746
+ "repo": "mradermacher/LFM2-VL-450M-GGUF",
747
+ "error": "RemoteEntryNotFoundError"
748
+ },
749
+ {
750
+ "repo": "mradermacher/LFM2-VL-450M-i1-GGUF",
751
+ "error": "RemoteEntryNotFoundError"
752
+ },
753
+ {
754
+ "repo": "mradermacher/LFM2.5-VL-1.6B-absolute-heresy-MPOA-GGUF",
755
+ "error": "RemoteEntryNotFoundError"
756
+ },
757
+ {
758
+ "repo": "mradermacher/LFM2.5-VL-1.6B-absolute-heresy-MPOA-i1-GGUF",
759
+ "error": "RemoteEntryNotFoundError"
760
+ },
761
+ {
762
+ "repo": "mradermacher/LFM2.5-VL-3B-absolute-heresy-GGUF",
763
+ "error": "RemoteEntryNotFoundError"
764
+ },
765
+ {
766
+ "repo": "mradermacher/LFM2.5-VL-3B-absolute-heresy-i1-GGUF",
767
+ "error": "RemoteEntryNotFoundError"
768
+ },
769
+ {
770
+ "repo": "mradermacher/lfm2-vl-450M-ja-GGUF",
771
+ "error": "RemoteEntryNotFoundError"
772
+ },
773
+ {
774
+ "repo": "mradermacher/lfm2-vl-medieval-page-GGUF",
775
+ "error": "RemoteEntryNotFoundError"
776
+ },
777
+ {
778
+ "repo": "mradermacher/lfm2-vl-textualis-GGUF",
779
+ "error": "RemoteEntryNotFoundError"
780
+ },
781
+ {
782
+ "repo": "ngxson/LFM2-VL-450M-GGUF-Q4_0",
783
+ "error": "RemoteEntryNotFoundError"
784
+ },
785
+ {
786
+ "repo": "noctrex/LFM2-VL-1.6B-GGUF",
787
+ "error": "RemoteEntryNotFoundError"
788
+ },
789
+ {
790
+ "repo": "noctrex/LFM2-VL-3B-GGUF",
791
+ "error": "RemoteEntryNotFoundError"
792
+ },
793
+ {
794
+ "repo": "runanywhere/LFM2-VL-450M-GGUF",
795
+ "error": "RemoteEntryNotFoundError"
796
+ },
797
+ {
798
+ "repo": "sizzlebop/LFM2-VL-450M-IQ4_NL-GGUF",
799
+ "error": "RemoteEntryNotFoundError"
800
+ },
801
+ {
802
+ "repo": "sizzlebop/LFM2-VL-450M-Q8_0-GGUF",
803
+ "error": "RemoteEntryNotFoundError"
804
+ },
805
+ {
806
+ "repo": "steampunque/LFM2-VL-1.6B-MP-GGUF",
807
+ "error": "RemoteEntryNotFoundError"
808
+ },
809
+ {
810
+ "repo": "tatsuyaaaaaaa/LFM2-VL-1.6B-gguf",
811
+ "error": "RemoteEntryNotFoundError"
812
+ },
813
+ {
814
+ "repo": "tatsuyaaaaaaa/LFM2-VL-3B-gguf",
815
+ "error": "RemoteEntryNotFoundError"
816
+ },
817
+ {
818
+ "repo": "tatsuyaaaaaaa/LFM2-VL-450M-gguf",
819
+ "error": "RemoteEntryNotFoundError"
820
+ },
821
+ {
822
+ "repo": "unsloth/LFM2.5-VL-1.6B-GGUF",
823
+ "error": "RemoteEntryNotFoundError"
824
+ },
825
+ {
826
+ "repo": "unsloth/LFM2.5-VL-3B-GGUF",
827
+ "error": "RemoteEntryNotFoundError"
828
+ },
829
+ {
830
+ "repo": "yashwork-byte/LFM2.5-VL-1.6B-field-logbook-GGUF",
831
+ "error": "RemoteEntryNotFoundError"
832
+ },
833
+ {
834
+ "repo": "ykhrustalev/LFM2.5-VL-450M-5bit",
835
+ "error": "RemoteEntryNotFoundError"
836
+ }
837
+ ]
838
+ }
sweep_component_sensitivity.json ADDED
@@ -0,0 +1,2532 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "meta": {
3
+ "n": 100,
4
+ "max_image_tokens": 512
5
+ },
6
+ "results": [
7
+ {
8
+ "recipe": "stock_4bit_vision_bf16",
9
+ "bits": {
10
+ "vision": null,
11
+ "projector": null,
12
+ "backbone": 4,
13
+ "embed_head": 4,
14
+ "other": null
15
+ },
16
+ "group_size": 64,
17
+ "size_bytes": 2388299045,
18
+ "size_gb": 2.388,
19
+ "bits_per_weight": 6.07045272519107,
20
+ "nominal_bits": 4,
21
+ "coverage": {
22
+ "embed_head": {
23
+ "total": 1,
24
+ "quantized": 1,
25
+ "params_total": 262144000,
26
+ "params_quantized": 262144000,
27
+ "coverage": 1.0,
28
+ "param_coverage": 1.0,
29
+ "skipped_sample": [],
30
+ "skipped_count": 0
31
+ },
32
+ "backbone": {
33
+ "total": 166,
34
+ "quantized": 166,
35
+ "params_total": 2434793472,
36
+ "params_quantized": 2434793472,
37
+ "coverage": 1.0,
38
+ "param_coverage": 1.0,
39
+ "skipped_sample": [],
40
+ "skipped_count": 0
41
+ },
42
+ "projector": {
43
+ "total": 2,
44
+ "quantized": 0,
45
+ "params_total": 13631488,
46
+ "params_quantized": 0,
47
+ "coverage": 0.0,
48
+ "param_coverage": 0.0,
49
+ "skipped_sample": [
50
+ "multi_modal_projector.linear_1",
51
+ "multi_modal_projector.linear_2"
52
+ ],
53
+ "skipped_count": 2
54
+ },
55
+ "vision": {
56
+ "total": 164,
57
+ "quantized": 0,
58
+ "params_total": 412250112,
59
+ "params_quantized": 0,
60
+ "coverage": 0.0,
61
+ "param_coverage": 0.0,
62
+ "skipped_sample": [
63
+ "vision_tower.embeddings.patch_embedding",
64
+ "vision_tower.embeddings.position_embedding",
65
+ "vision_tower.encoder.layers.0.mlp.fc1",
66
+ "vision_tower.encoder.layers.0.mlp.fc2",
67
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
68
+ ],
69
+ "skipped_count": 164
70
+ }
71
+ },
72
+ "coverage_ok": true,
73
+ "benchmarks": [
74
+ {
75
+ "benchmark": "docvqa",
76
+ "n": 100,
77
+ "seed": 0,
78
+ "max_image_tokens": 512,
79
+ "max_num_patches": 2048,
80
+ "accuracy": 0.8806,
81
+ "accuracy_given_parsed": 0.8806,
82
+ "parse_failure_rate": 0.0,
83
+ "n_parsed": 100,
84
+ "published": 91.1,
85
+ "wall_seconds": 131.5,
86
+ "parse_failure_samples": []
87
+ },
88
+ {
89
+ "benchmark": "chartqa",
90
+ "n": 100,
91
+ "seed": 0,
92
+ "max_image_tokens": 512,
93
+ "max_num_patches": 2048,
94
+ "accuracy": 0.85,
95
+ "accuracy_given_parsed": 0.85,
96
+ "parse_failure_rate": 0.0,
97
+ "n_parsed": 100,
98
+ "published": 81.3,
99
+ "wall_seconds": 108.3,
100
+ "parse_failure_samples": []
101
+ },
102
+ {
103
+ "benchmark": "ocrbench",
104
+ "n": 100,
105
+ "seed": 0,
106
+ "max_image_tokens": 512,
107
+ "max_num_patches": 2048,
108
+ "accuracy": 0.82,
109
+ "accuracy_given_parsed": 0.82,
110
+ "parse_failure_rate": 0.0,
111
+ "n_parsed": 100,
112
+ "published": 84.2,
113
+ "wall_seconds": 99.2,
114
+ "parse_failure_samples": []
115
+ },
116
+ {
117
+ "benchmark": "screenspot_v2",
118
+ "n": 100,
119
+ "seed": 0,
120
+ "max_image_tokens": 512,
121
+ "max_num_patches": 2048,
122
+ "accuracy": 0.78,
123
+ "accuracy_given_parsed": 0.78,
124
+ "parse_failure_rate": 0.0,
125
+ "n_parsed": 100,
126
+ "published": 80.7,
127
+ "wall_seconds": 136.9,
128
+ "parse_failure_samples": []
129
+ },
130
+ {
131
+ "benchmark": "refcoco",
132
+ "n": 100,
133
+ "seed": 0,
134
+ "max_image_tokens": 512,
135
+ "max_num_patches": 2048,
136
+ "accuracy": 0.86,
137
+ "accuracy_given_parsed": 0.86,
138
+ "parse_failure_rate": 0.0,
139
+ "n_parsed": 100,
140
+ "published": 87.9,
141
+ "wall_seconds": 101.7,
142
+ "parse_failure_samples": []
143
+ }
144
+ ],
145
+ "mean_accuracy": 0.8381,
146
+ "wall_seconds": 584.7
147
+ },
148
+ {
149
+ "recipe": "uniform_4bit",
150
+ "bits": {
151
+ "vision": 4,
152
+ "projector": 4,
153
+ "backbone": 4,
154
+ "embed_head": 4,
155
+ "other": 4
156
+ },
157
+ "group_size": 64,
158
+ "size_bytes": 1970322137,
159
+ "size_gb": 1.97,
160
+ "bits_per_weight": 4.99967759590377,
161
+ "nominal_bits": 4,
162
+ "coverage": {
163
+ "embed_head": {
164
+ "total": 1,
165
+ "quantized": 1,
166
+ "params_total": 262144000,
167
+ "params_quantized": 262144000,
168
+ "coverage": 1.0,
169
+ "param_coverage": 1.0,
170
+ "skipped_sample": [],
171
+ "skipped_count": 0
172
+ },
173
+ "backbone": {
174
+ "total": 166,
175
+ "quantized": 166,
176
+ "params_total": 2434793472,
177
+ "params_quantized": 2434793472,
178
+ "coverage": 1.0,
179
+ "param_coverage": 1.0,
180
+ "skipped_sample": [],
181
+ "skipped_count": 0
182
+ },
183
+ "projector": {
184
+ "total": 2,
185
+ "quantized": 2,
186
+ "params_total": 13631488,
187
+ "params_quantized": 13631488,
188
+ "coverage": 1.0,
189
+ "param_coverage": 1.0,
190
+ "skipped_sample": [],
191
+ "skipped_count": 0
192
+ },
193
+ "vision": {
194
+ "total": 164,
195
+ "quantized": 135,
196
+ "params_total": 412250112,
197
+ "params_quantized": 277198848,
198
+ "coverage": 0.8232,
199
+ "param_coverage": 0.6724,
200
+ "skipped_sample": [
201
+ "vision_tower.embeddings.patch_embedding",
202
+ "vision_tower.embeddings.position_embedding",
203
+ "vision_tower.encoder.layers.0.mlp.fc2",
204
+ "vision_tower.encoder.layers.1.mlp.fc2",
205
+ "vision_tower.encoder.layers.10.mlp.fc2"
206
+ ],
207
+ "skipped_count": 29
208
+ }
209
+ },
210
+ "coverage_ok": false,
211
+ "benchmarks": [
212
+ {
213
+ "benchmark": "docvqa",
214
+ "n": 100,
215
+ "seed": 0,
216
+ "max_image_tokens": 512,
217
+ "max_num_patches": 2048,
218
+ "accuracy": 0.871,
219
+ "accuracy_given_parsed": 0.871,
220
+ "parse_failure_rate": 0.0,
221
+ "n_parsed": 100,
222
+ "published": 91.1,
223
+ "wall_seconds": 129.4,
224
+ "parse_failure_samples": []
225
+ },
226
+ {
227
+ "benchmark": "chartqa",
228
+ "n": 100,
229
+ "seed": 0,
230
+ "max_image_tokens": 512,
231
+ "max_num_patches": 2048,
232
+ "accuracy": 0.85,
233
+ "accuracy_given_parsed": 0.85,
234
+ "parse_failure_rate": 0.0,
235
+ "n_parsed": 100,
236
+ "published": 81.3,
237
+ "wall_seconds": 107.7,
238
+ "parse_failure_samples": []
239
+ },
240
+ {
241
+ "benchmark": "ocrbench",
242
+ "n": 100,
243
+ "seed": 0,
244
+ "max_image_tokens": 512,
245
+ "max_num_patches": 2048,
246
+ "accuracy": 0.79,
247
+ "accuracy_given_parsed": 0.79,
248
+ "parse_failure_rate": 0.0,
249
+ "n_parsed": 100,
250
+ "published": 84.2,
251
+ "wall_seconds": 100.6,
252
+ "parse_failure_samples": []
253
+ },
254
+ {
255
+ "benchmark": "screenspot_v2",
256
+ "n": 100,
257
+ "seed": 0,
258
+ "max_image_tokens": 512,
259
+ "max_num_patches": 2048,
260
+ "accuracy": 0.76,
261
+ "accuracy_given_parsed": 0.7677,
262
+ "parse_failure_rate": 0.01,
263
+ "n_parsed": 99,
264
+ "published": 80.7,
265
+ "wall_seconds": 140.4,
266
+ "parse_failure_samples": [
267
+ "[show]"
268
+ ]
269
+ },
270
+ {
271
+ "benchmark": "refcoco",
272
+ "n": 100,
273
+ "seed": 0,
274
+ "max_image_tokens": 512,
275
+ "max_num_patches": 2048,
276
+ "accuracy": 0.82,
277
+ "accuracy_given_parsed": 0.82,
278
+ "parse_failure_rate": 0.0,
279
+ "n_parsed": 100,
280
+ "published": 87.9,
281
+ "wall_seconds": 103.5,
282
+ "parse_failure_samples": []
283
+ }
284
+ ],
285
+ "mean_accuracy": 0.8182,
286
+ "wall_seconds": 588.5
287
+ },
288
+ {
289
+ "recipe": "only_vision_8bit",
290
+ "bits": {
291
+ "vision": 8,
292
+ "projector": null,
293
+ "backbone": null,
294
+ "embed_head": null,
295
+ "other": null
296
+ },
297
+ "group_size": 64,
298
+ "size_bytes": 6005266581,
299
+ "size_gb": 6.005,
300
+ "bits_per_weight": 15.334399844997696,
301
+ "nominal_bits": 8,
302
+ "coverage": {
303
+ "embed_head": {
304
+ "total": 1,
305
+ "quantized": 0,
306
+ "params_total": 262144000,
307
+ "params_quantized": 0,
308
+ "coverage": 0.0,
309
+ "param_coverage": 0.0,
310
+ "skipped_sample": [
311
+ "language_model.model.embed_tokens"
312
+ ],
313
+ "skipped_count": 1
314
+ },
315
+ "backbone": {
316
+ "total": 166,
317
+ "quantized": 0,
318
+ "params_total": 2434793472,
319
+ "params_quantized": 0,
320
+ "coverage": 0.0,
321
+ "param_coverage": 0.0,
322
+ "skipped_sample": [
323
+ "language_model.model.layers.0.conv.in_proj",
324
+ "language_model.model.layers.0.conv.out_proj",
325
+ "language_model.model.layers.0.feed_forward.w1",
326
+ "language_model.model.layers.0.feed_forward.w2",
327
+ "language_model.model.layers.0.feed_forward.w3"
328
+ ],
329
+ "skipped_count": 166
330
+ },
331
+ "projector": {
332
+ "total": 2,
333
+ "quantized": 0,
334
+ "params_total": 13631488,
335
+ "params_quantized": 0,
336
+ "coverage": 0.0,
337
+ "param_coverage": 0.0,
338
+ "skipped_sample": [
339
+ "multi_modal_projector.linear_1",
340
+ "multi_modal_projector.linear_2"
341
+ ],
342
+ "skipped_count": 2
343
+ },
344
+ "vision": {
345
+ "total": 164,
346
+ "quantized": 135,
347
+ "params_total": 412250112,
348
+ "params_quantized": 277198848,
349
+ "coverage": 0.8232,
350
+ "param_coverage": 0.6724,
351
+ "skipped_sample": [
352
+ "vision_tower.embeddings.patch_embedding",
353
+ "vision_tower.embeddings.position_embedding",
354
+ "vision_tower.encoder.layers.0.mlp.fc2",
355
+ "vision_tower.encoder.layers.1.mlp.fc2",
356
+ "vision_tower.encoder.layers.10.mlp.fc2"
357
+ ],
358
+ "skipped_count": 29
359
+ }
360
+ },
361
+ "coverage_ok": false,
362
+ "benchmarks": [
363
+ {
364
+ "benchmark": "docvqa",
365
+ "n": 100,
366
+ "seed": 0,
367
+ "max_image_tokens": 512,
368
+ "max_num_patches": 2048,
369
+ "accuracy": 0.8659,
370
+ "accuracy_given_parsed": 0.8659,
371
+ "parse_failure_rate": 0.0,
372
+ "n_parsed": 100,
373
+ "published": 91.1,
374
+ "wall_seconds": 133.3,
375
+ "parse_failure_samples": []
376
+ },
377
+ {
378
+ "benchmark": "chartqa",
379
+ "n": 100,
380
+ "seed": 0,
381
+ "max_image_tokens": 512,
382
+ "max_num_patches": 2048,
383
+ "accuracy": 0.88,
384
+ "accuracy_given_parsed": 0.88,
385
+ "parse_failure_rate": 0.0,
386
+ "n_parsed": 100,
387
+ "published": 81.3,
388
+ "wall_seconds": 108.9,
389
+ "parse_failure_samples": []
390
+ },
391
+ {
392
+ "benchmark": "ocrbench",
393
+ "n": 100,
394
+ "seed": 0,
395
+ "max_image_tokens": 512,
396
+ "max_num_patches": 2048,
397
+ "accuracy": 0.82,
398
+ "accuracy_given_parsed": 0.82,
399
+ "parse_failure_rate": 0.0,
400
+ "n_parsed": 100,
401
+ "published": 84.2,
402
+ "wall_seconds": 119.1,
403
+ "parse_failure_samples": []
404
+ },
405
+ {
406
+ "benchmark": "screenspot_v2",
407
+ "n": 100,
408
+ "seed": 0,
409
+ "max_image_tokens": 512,
410
+ "max_num_patches": 2048,
411
+ "accuracy": 0.78,
412
+ "accuracy_given_parsed": 0.7879,
413
+ "parse_failure_rate": 0.01,
414
+ "n_parsed": 99,
415
+ "published": 80.7,
416
+ "wall_seconds": 177.7,
417
+ "parse_failure_samples": [
418
+ "[0.67, 0.1, 710, 740, 140]"
419
+ ]
420
+ },
421
+ {
422
+ "benchmark": "refcoco",
423
+ "n": 100,
424
+ "seed": 0,
425
+ "max_image_tokens": 512,
426
+ "max_num_patches": 2048,
427
+ "accuracy": 0.84,
428
+ "accuracy_given_parsed": 0.84,
429
+ "parse_failure_rate": 0.0,
430
+ "n_parsed": 100,
431
+ "published": 87.9,
432
+ "wall_seconds": 124.7,
433
+ "parse_failure_samples": []
434
+ }
435
+ ],
436
+ "mean_accuracy": 0.8372,
437
+ "wall_seconds": 672.5
438
+ },
439
+ {
440
+ "recipe": "only_vision_6bit",
441
+ "bits": {
442
+ "vision": 6,
443
+ "projector": null,
444
+ "backbone": null,
445
+ "embed_head": null,
446
+ "other": null
447
+ },
448
+ "group_size": 64,
449
+ "size_bytes": 5935966865,
450
+ "size_gb": 5.936,
451
+ "bits_per_weight": 15.156906470330414,
452
+ "nominal_bits": 6,
453
+ "coverage": {
454
+ "embed_head": {
455
+ "total": 1,
456
+ "quantized": 0,
457
+ "params_total": 262144000,
458
+ "params_quantized": 0,
459
+ "coverage": 0.0,
460
+ "param_coverage": 0.0,
461
+ "skipped_sample": [
462
+ "language_model.model.embed_tokens"
463
+ ],
464
+ "skipped_count": 1
465
+ },
466
+ "backbone": {
467
+ "total": 166,
468
+ "quantized": 0,
469
+ "params_total": 2434793472,
470
+ "params_quantized": 0,
471
+ "coverage": 0.0,
472
+ "param_coverage": 0.0,
473
+ "skipped_sample": [
474
+ "language_model.model.layers.0.conv.in_proj",
475
+ "language_model.model.layers.0.conv.out_proj",
476
+ "language_model.model.layers.0.feed_forward.w1",
477
+ "language_model.model.layers.0.feed_forward.w2",
478
+ "language_model.model.layers.0.feed_forward.w3"
479
+ ],
480
+ "skipped_count": 166
481
+ },
482
+ "projector": {
483
+ "total": 2,
484
+ "quantized": 0,
485
+ "params_total": 13631488,
486
+ "params_quantized": 0,
487
+ "coverage": 0.0,
488
+ "param_coverage": 0.0,
489
+ "skipped_sample": [
490
+ "multi_modal_projector.linear_1",
491
+ "multi_modal_projector.linear_2"
492
+ ],
493
+ "skipped_count": 2
494
+ },
495
+ "vision": {
496
+ "total": 164,
497
+ "quantized": 135,
498
+ "params_total": 412250112,
499
+ "params_quantized": 277198848,
500
+ "coverage": 0.8232,
501
+ "param_coverage": 0.6724,
502
+ "skipped_sample": [
503
+ "vision_tower.embeddings.patch_embedding",
504
+ "vision_tower.embeddings.position_embedding",
505
+ "vision_tower.encoder.layers.0.mlp.fc2",
506
+ "vision_tower.encoder.layers.1.mlp.fc2",
507
+ "vision_tower.encoder.layers.10.mlp.fc2"
508
+ ],
509
+ "skipped_count": 29
510
+ }
511
+ },
512
+ "coverage_ok": false,
513
+ "benchmarks": [
514
+ {
515
+ "benchmark": "docvqa",
516
+ "n": 100,
517
+ "seed": 0,
518
+ "max_image_tokens": 512,
519
+ "max_num_patches": 2048,
520
+ "accuracy": 0.8744,
521
+ "accuracy_given_parsed": 0.8744,
522
+ "parse_failure_rate": 0.0,
523
+ "n_parsed": 100,
524
+ "published": 91.1,
525
+ "wall_seconds": 134.2,
526
+ "parse_failure_samples": []
527
+ },
528
+ {
529
+ "benchmark": "chartqa",
530
+ "n": 100,
531
+ "seed": 0,
532
+ "max_image_tokens": 512,
533
+ "max_num_patches": 2048,
534
+ "accuracy": 0.88,
535
+ "accuracy_given_parsed": 0.88,
536
+ "parse_failure_rate": 0.0,
537
+ "n_parsed": 100,
538
+ "published": 81.3,
539
+ "wall_seconds": 109.6,
540
+ "parse_failure_samples": []
541
+ },
542
+ {
543
+ "benchmark": "ocrbench",
544
+ "n": 100,
545
+ "seed": 0,
546
+ "max_image_tokens": 512,
547
+ "max_num_patches": 2048,
548
+ "accuracy": 0.81,
549
+ "accuracy_given_parsed": 0.81,
550
+ "parse_failure_rate": 0.0,
551
+ "n_parsed": 100,
552
+ "published": 84.2,
553
+ "wall_seconds": 119.6,
554
+ "parse_failure_samples": []
555
+ },
556
+ {
557
+ "benchmark": "screenspot_v2",
558
+ "n": 100,
559
+ "seed": 0,
560
+ "max_image_tokens": 512,
561
+ "max_num_patches": 2048,
562
+ "accuracy": 0.79,
563
+ "accuracy_given_parsed": 0.798,
564
+ "parse_failure_rate": 0.01,
565
+ "n_parsed": 99,
566
+ "published": 80.7,
567
+ "wall_seconds": 177.3,
568
+ "parse_failure_samples": [
569
+ "[0.67, 0.1, 710, 740, 140]"
570
+ ]
571
+ },
572
+ {
573
+ "benchmark": "refcoco",
574
+ "n": 100,
575
+ "seed": 0,
576
+ "max_image_tokens": 512,
577
+ "max_num_patches": 2048,
578
+ "accuracy": 0.83,
579
+ "accuracy_given_parsed": 0.83,
580
+ "parse_failure_rate": 0.0,
581
+ "n_parsed": 100,
582
+ "published": 87.9,
583
+ "wall_seconds": 124.9,
584
+ "parse_failure_samples": []
585
+ }
586
+ ],
587
+ "mean_accuracy": 0.8369,
588
+ "wall_seconds": 675.1
589
+ },
590
+ {
591
+ "recipe": "only_vision_4bit",
592
+ "error": "smoke_test_failed",
593
+ "size_bytes": 5866667131,
594
+ "bits_per_weight": 14.979413095663134,
595
+ "coverage": {
596
+ "embed_head": {
597
+ "total": 1,
598
+ "quantized": 0,
599
+ "params_total": 262144000,
600
+ "params_quantized": 0,
601
+ "coverage": 0.0,
602
+ "param_coverage": 0.0,
603
+ "skipped_sample": [
604
+ "language_model.model.embed_tokens"
605
+ ],
606
+ "skipped_count": 1
607
+ },
608
+ "backbone": {
609
+ "total": 166,
610
+ "quantized": 0,
611
+ "params_total": 2434793472,
612
+ "params_quantized": 0,
613
+ "coverage": 0.0,
614
+ "param_coverage": 0.0,
615
+ "skipped_sample": [
616
+ "language_model.model.layers.0.conv.in_proj",
617
+ "language_model.model.layers.0.conv.out_proj",
618
+ "language_model.model.layers.0.feed_forward.w1",
619
+ "language_model.model.layers.0.feed_forward.w2",
620
+ "language_model.model.layers.0.feed_forward.w3"
621
+ ],
622
+ "skipped_count": 166
623
+ },
624
+ "projector": {
625
+ "total": 2,
626
+ "quantized": 0,
627
+ "params_total": 13631488,
628
+ "params_quantized": 0,
629
+ "coverage": 0.0,
630
+ "param_coverage": 0.0,
631
+ "skipped_sample": [
632
+ "multi_modal_projector.linear_1",
633
+ "multi_modal_projector.linear_2"
634
+ ],
635
+ "skipped_count": 2
636
+ },
637
+ "vision": {
638
+ "total": 164,
639
+ "quantized": 135,
640
+ "params_total": 412250112,
641
+ "params_quantized": 277198848,
642
+ "coverage": 0.8232,
643
+ "param_coverage": 0.6724,
644
+ "skipped_sample": [
645
+ "vision_tower.embeddings.patch_embedding",
646
+ "vision_tower.embeddings.position_embedding",
647
+ "vision_tower.encoder.layers.0.mlp.fc2",
648
+ "vision_tower.encoder.layers.1.mlp.fc2",
649
+ "vision_tower.encoder.layers.10.mlp.fc2"
650
+ ],
651
+ "skipped_count": 29
652
+ }
653
+ }
654
+ },
655
+ {
656
+ "recipe": "only_projector_8bit",
657
+ "bits": {
658
+ "vision": null,
659
+ "projector": 8,
660
+ "backbone": null,
661
+ "embed_head": null,
662
+ "other": null
663
+ },
664
+ "group_size": 64,
665
+ "size_bytes": 6252267504,
666
+ "size_gb": 6.252,
667
+ "bits_per_weight": 15.96726854894537,
668
+ "nominal_bits": 8,
669
+ "coverage": {
670
+ "embed_head": {
671
+ "total": 1,
672
+ "quantized": 0,
673
+ "params_total": 262144000,
674
+ "params_quantized": 0,
675
+ "coverage": 0.0,
676
+ "param_coverage": 0.0,
677
+ "skipped_sample": [
678
+ "language_model.model.embed_tokens"
679
+ ],
680
+ "skipped_count": 1
681
+ },
682
+ "backbone": {
683
+ "total": 166,
684
+ "quantized": 0,
685
+ "params_total": 2434793472,
686
+ "params_quantized": 0,
687
+ "coverage": 0.0,
688
+ "param_coverage": 0.0,
689
+ "skipped_sample": [
690
+ "language_model.model.layers.0.conv.in_proj",
691
+ "language_model.model.layers.0.conv.out_proj",
692
+ "language_model.model.layers.0.feed_forward.w1",
693
+ "language_model.model.layers.0.feed_forward.w2",
694
+ "language_model.model.layers.0.feed_forward.w3"
695
+ ],
696
+ "skipped_count": 166
697
+ },
698
+ "projector": {
699
+ "total": 2,
700
+ "quantized": 2,
701
+ "params_total": 13631488,
702
+ "params_quantized": 13631488,
703
+ "coverage": 1.0,
704
+ "param_coverage": 1.0,
705
+ "skipped_sample": [],
706
+ "skipped_count": 0
707
+ },
708
+ "vision": {
709
+ "total": 164,
710
+ "quantized": 0,
711
+ "params_total": 412250112,
712
+ "params_quantized": 0,
713
+ "coverage": 0.0,
714
+ "param_coverage": 0.0,
715
+ "skipped_sample": [
716
+ "vision_tower.embeddings.patch_embedding",
717
+ "vision_tower.embeddings.position_embedding",
718
+ "vision_tower.encoder.layers.0.mlp.fc1",
719
+ "vision_tower.encoder.layers.0.mlp.fc2",
720
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
721
+ ],
722
+ "skipped_count": 164
723
+ }
724
+ },
725
+ "coverage_ok": true,
726
+ "benchmarks": [
727
+ {
728
+ "benchmark": "docvqa",
729
+ "n": 100,
730
+ "seed": 0,
731
+ "max_image_tokens": 512,
732
+ "max_num_patches": 2048,
733
+ "accuracy": 0.8659,
734
+ "accuracy_given_parsed": 0.8659,
735
+ "parse_failure_rate": 0.0,
736
+ "n_parsed": 100,
737
+ "published": 91.1,
738
+ "wall_seconds": 130.8,
739
+ "parse_failure_samples": []
740
+ },
741
+ {
742
+ "benchmark": "chartqa",
743
+ "n": 100,
744
+ "seed": 0,
745
+ "max_image_tokens": 512,
746
+ "max_num_patches": 2048,
747
+ "accuracy": 0.88,
748
+ "accuracy_given_parsed": 0.88,
749
+ "parse_failure_rate": 0.0,
750
+ "n_parsed": 100,
751
+ "published": 81.3,
752
+ "wall_seconds": 105.7,
753
+ "parse_failure_samples": []
754
+ },
755
+ {
756
+ "benchmark": "ocrbench",
757
+ "n": 100,
758
+ "seed": 0,
759
+ "max_image_tokens": 512,
760
+ "max_num_patches": 2048,
761
+ "accuracy": 0.82,
762
+ "accuracy_given_parsed": 0.82,
763
+ "parse_failure_rate": 0.0,
764
+ "n_parsed": 100,
765
+ "published": 84.2,
766
+ "wall_seconds": 117.5,
767
+ "parse_failure_samples": []
768
+ },
769
+ {
770
+ "benchmark": "screenspot_v2",
771
+ "n": 100,
772
+ "seed": 0,
773
+ "max_image_tokens": 512,
774
+ "max_num_patches": 2048,
775
+ "accuracy": 0.79,
776
+ "accuracy_given_parsed": 0.798,
777
+ "parse_failure_rate": 0.01,
778
+ "n_parsed": 99,
779
+ "published": 80.7,
780
+ "wall_seconds": 174.8,
781
+ "parse_failure_samples": [
782
+ "[0.67, 0.1, 710, 740, 140]"
783
+ ]
784
+ },
785
+ {
786
+ "benchmark": "refcoco",
787
+ "n": 100,
788
+ "seed": 0,
789
+ "max_image_tokens": 512,
790
+ "max_num_patches": 2048,
791
+ "accuracy": 0.85,
792
+ "accuracy_given_parsed": 0.85,
793
+ "parse_failure_rate": 0.0,
794
+ "n_parsed": 100,
795
+ "published": 87.9,
796
+ "wall_seconds": 121.1,
797
+ "parse_failure_samples": []
798
+ }
799
+ ],
800
+ "mean_accuracy": 0.8412,
801
+ "wall_seconds": 658.5
802
+ },
803
+ {
804
+ "recipe": "only_projector_6bit",
805
+ "bits": {
806
+ "vision": null,
807
+ "projector": 6,
808
+ "backbone": null,
809
+ "embed_head": null,
810
+ "other": null
811
+ },
812
+ "group_size": 64,
813
+ "size_bytes": 6248859631,
814
+ "size_gb": 6.249,
815
+ "bits_per_weight": 15.958540161997467,
816
+ "nominal_bits": 6,
817
+ "coverage": {
818
+ "embed_head": {
819
+ "total": 1,
820
+ "quantized": 0,
821
+ "params_total": 262144000,
822
+ "params_quantized": 0,
823
+ "coverage": 0.0,
824
+ "param_coverage": 0.0,
825
+ "skipped_sample": [
826
+ "language_model.model.embed_tokens"
827
+ ],
828
+ "skipped_count": 1
829
+ },
830
+ "backbone": {
831
+ "total": 166,
832
+ "quantized": 0,
833
+ "params_total": 2434793472,
834
+ "params_quantized": 0,
835
+ "coverage": 0.0,
836
+ "param_coverage": 0.0,
837
+ "skipped_sample": [
838
+ "language_model.model.layers.0.conv.in_proj",
839
+ "language_model.model.layers.0.conv.out_proj",
840
+ "language_model.model.layers.0.feed_forward.w1",
841
+ "language_model.model.layers.0.feed_forward.w2",
842
+ "language_model.model.layers.0.feed_forward.w3"
843
+ ],
844
+ "skipped_count": 166
845
+ },
846
+ "projector": {
847
+ "total": 2,
848
+ "quantized": 2,
849
+ "params_total": 13631488,
850
+ "params_quantized": 13631488,
851
+ "coverage": 1.0,
852
+ "param_coverage": 1.0,
853
+ "skipped_sample": [],
854
+ "skipped_count": 0
855
+ },
856
+ "vision": {
857
+ "total": 164,
858
+ "quantized": 0,
859
+ "params_total": 412250112,
860
+ "params_quantized": 0,
861
+ "coverage": 0.0,
862
+ "param_coverage": 0.0,
863
+ "skipped_sample": [
864
+ "vision_tower.embeddings.patch_embedding",
865
+ "vision_tower.embeddings.position_embedding",
866
+ "vision_tower.encoder.layers.0.mlp.fc1",
867
+ "vision_tower.encoder.layers.0.mlp.fc2",
868
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
869
+ ],
870
+ "skipped_count": 164
871
+ }
872
+ },
873
+ "coverage_ok": true,
874
+ "benchmarks": [
875
+ {
876
+ "benchmark": "docvqa",
877
+ "n": 100,
878
+ "seed": 0,
879
+ "max_image_tokens": 512,
880
+ "max_num_patches": 2048,
881
+ "accuracy": 0.8659,
882
+ "accuracy_given_parsed": 0.8659,
883
+ "parse_failure_rate": 0.0,
884
+ "n_parsed": 100,
885
+ "published": 91.1,
886
+ "wall_seconds": 130.5,
887
+ "parse_failure_samples": []
888
+ },
889
+ {
890
+ "benchmark": "chartqa",
891
+ "n": 100,
892
+ "seed": 0,
893
+ "max_image_tokens": 512,
894
+ "max_num_patches": 2048,
895
+ "accuracy": 0.88,
896
+ "accuracy_given_parsed": 0.88,
897
+ "parse_failure_rate": 0.0,
898
+ "n_parsed": 100,
899
+ "published": 81.3,
900
+ "wall_seconds": 105.6,
901
+ "parse_failure_samples": []
902
+ },
903
+ {
904
+ "benchmark": "ocrbench",
905
+ "n": 100,
906
+ "seed": 0,
907
+ "max_image_tokens": 512,
908
+ "max_num_patches": 2048,
909
+ "accuracy": 0.82,
910
+ "accuracy_given_parsed": 0.82,
911
+ "parse_failure_rate": 0.0,
912
+ "n_parsed": 100,
913
+ "published": 84.2,
914
+ "wall_seconds": 117.3,
915
+ "parse_failure_samples": []
916
+ },
917
+ {
918
+ "benchmark": "screenspot_v2",
919
+ "n": 100,
920
+ "seed": 0,
921
+ "max_image_tokens": 512,
922
+ "max_num_patches": 2048,
923
+ "accuracy": 0.8,
924
+ "accuracy_given_parsed": 0.8081,
925
+ "parse_failure_rate": 0.01,
926
+ "n_parsed": 99,
927
+ "published": 80.7,
928
+ "wall_seconds": 174.4,
929
+ "parse_failure_samples": [
930
+ "[0.67, 0.1, 710, 730, 140]"
931
+ ]
932
+ },
933
+ {
934
+ "benchmark": "refcoco",
935
+ "n": 100,
936
+ "seed": 0,
937
+ "max_image_tokens": 512,
938
+ "max_num_patches": 2048,
939
+ "accuracy": 0.86,
940
+ "accuracy_given_parsed": 0.86,
941
+ "parse_failure_rate": 0.0,
942
+ "n_parsed": 100,
943
+ "published": 87.9,
944
+ "wall_seconds": 121.6,
945
+ "parse_failure_samples": []
946
+ }
947
+ ],
948
+ "mean_accuracy": 0.8452,
949
+ "wall_seconds": 659.1
950
+ },
951
+ {
952
+ "recipe": "only_projector_4bit",
953
+ "bits": {
954
+ "vision": null,
955
+ "projector": 4,
956
+ "backbone": null,
957
+ "embed_head": null,
958
+ "other": null
959
+ },
960
+ "group_size": 64,
961
+ "size_bytes": 6245451761,
962
+ "size_gb": 6.245,
963
+ "bits_per_weight": 15.949811775049566,
964
+ "nominal_bits": 4,
965
+ "coverage": {
966
+ "embed_head": {
967
+ "total": 1,
968
+ "quantized": 0,
969
+ "params_total": 262144000,
970
+ "params_quantized": 0,
971
+ "coverage": 0.0,
972
+ "param_coverage": 0.0,
973
+ "skipped_sample": [
974
+ "language_model.model.embed_tokens"
975
+ ],
976
+ "skipped_count": 1
977
+ },
978
+ "backbone": {
979
+ "total": 166,
980
+ "quantized": 0,
981
+ "params_total": 2434793472,
982
+ "params_quantized": 0,
983
+ "coverage": 0.0,
984
+ "param_coverage": 0.0,
985
+ "skipped_sample": [
986
+ "language_model.model.layers.0.conv.in_proj",
987
+ "language_model.model.layers.0.conv.out_proj",
988
+ "language_model.model.layers.0.feed_forward.w1",
989
+ "language_model.model.layers.0.feed_forward.w2",
990
+ "language_model.model.layers.0.feed_forward.w3"
991
+ ],
992
+ "skipped_count": 166
993
+ },
994
+ "projector": {
995
+ "total": 2,
996
+ "quantized": 2,
997
+ "params_total": 13631488,
998
+ "params_quantized": 13631488,
999
+ "coverage": 1.0,
1000
+ "param_coverage": 1.0,
1001
+ "skipped_sample": [],
1002
+ "skipped_count": 0
1003
+ },
1004
+ "vision": {
1005
+ "total": 164,
1006
+ "quantized": 0,
1007
+ "params_total": 412250112,
1008
+ "params_quantized": 0,
1009
+ "coverage": 0.0,
1010
+ "param_coverage": 0.0,
1011
+ "skipped_sample": [
1012
+ "vision_tower.embeddings.patch_embedding",
1013
+ "vision_tower.embeddings.position_embedding",
1014
+ "vision_tower.encoder.layers.0.mlp.fc1",
1015
+ "vision_tower.encoder.layers.0.mlp.fc2",
1016
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1017
+ ],
1018
+ "skipped_count": 164
1019
+ }
1020
+ },
1021
+ "coverage_ok": true,
1022
+ "benchmarks": [
1023
+ {
1024
+ "benchmark": "docvqa",
1025
+ "n": 100,
1026
+ "seed": 0,
1027
+ "max_image_tokens": 512,
1028
+ "max_num_patches": 2048,
1029
+ "accuracy": 0.8759,
1030
+ "accuracy_given_parsed": 0.8759,
1031
+ "parse_failure_rate": 0.0,
1032
+ "n_parsed": 100,
1033
+ "published": 91.1,
1034
+ "wall_seconds": 130.6,
1035
+ "parse_failure_samples": []
1036
+ },
1037
+ {
1038
+ "benchmark": "chartqa",
1039
+ "n": 100,
1040
+ "seed": 0,
1041
+ "max_image_tokens": 512,
1042
+ "max_num_patches": 2048,
1043
+ "accuracy": 0.86,
1044
+ "accuracy_given_parsed": 0.86,
1045
+ "parse_failure_rate": 0.0,
1046
+ "n_parsed": 100,
1047
+ "published": 81.3,
1048
+ "wall_seconds": 105.7,
1049
+ "parse_failure_samples": []
1050
+ },
1051
+ {
1052
+ "benchmark": "ocrbench",
1053
+ "n": 100,
1054
+ "seed": 0,
1055
+ "max_image_tokens": 512,
1056
+ "max_num_patches": 2048,
1057
+ "accuracy": 0.82,
1058
+ "accuracy_given_parsed": 0.82,
1059
+ "parse_failure_rate": 0.0,
1060
+ "n_parsed": 100,
1061
+ "published": 84.2,
1062
+ "wall_seconds": 112.1,
1063
+ "parse_failure_samples": []
1064
+ },
1065
+ {
1066
+ "benchmark": "screenspot_v2",
1067
+ "n": 100,
1068
+ "seed": 0,
1069
+ "max_image_tokens": 512,
1070
+ "max_num_patches": 2048,
1071
+ "accuracy": 0.77,
1072
+ "accuracy_given_parsed": 0.7778,
1073
+ "parse_failure_rate": 0.01,
1074
+ "n_parsed": 99,
1075
+ "published": 80.7,
1076
+ "wall_seconds": 176.4,
1077
+ "parse_failure_samples": [
1078
+ "[0.67, 0.1, 710, 730, 140]"
1079
+ ]
1080
+ },
1081
+ {
1082
+ "benchmark": "refcoco",
1083
+ "n": 100,
1084
+ "seed": 0,
1085
+ "max_image_tokens": 512,
1086
+ "max_num_patches": 2048,
1087
+ "accuracy": 0.86,
1088
+ "accuracy_given_parsed": 0.86,
1089
+ "parse_failure_rate": 0.0,
1090
+ "n_parsed": 100,
1091
+ "published": 87.9,
1092
+ "wall_seconds": 121.1,
1093
+ "parse_failure_samples": []
1094
+ }
1095
+ ],
1096
+ "mean_accuracy": 0.8372,
1097
+ "wall_seconds": 655.6
1098
+ },
1099
+ {
1100
+ "recipe": "only_backbone_8bit",
1101
+ "bits": {
1102
+ "vision": null,
1103
+ "projector": null,
1104
+ "backbone": 8,
1105
+ "embed_head": null,
1106
+ "other": null
1107
+ },
1108
+ "group_size": 64,
1109
+ "size_bytes": 3982527657,
1110
+ "size_gb": 3.983,
1111
+ "bits_per_weight": 10.153659280857479,
1112
+ "nominal_bits": 8,
1113
+ "coverage": {
1114
+ "embed_head": {
1115
+ "total": 1,
1116
+ "quantized": 0,
1117
+ "params_total": 262144000,
1118
+ "params_quantized": 0,
1119
+ "coverage": 0.0,
1120
+ "param_coverage": 0.0,
1121
+ "skipped_sample": [
1122
+ "language_model.model.embed_tokens"
1123
+ ],
1124
+ "skipped_count": 1
1125
+ },
1126
+ "backbone": {
1127
+ "total": 166,
1128
+ "quantized": 166,
1129
+ "params_total": 2434793472,
1130
+ "params_quantized": 2434793472,
1131
+ "coverage": 1.0,
1132
+ "param_coverage": 1.0,
1133
+ "skipped_sample": [],
1134
+ "skipped_count": 0
1135
+ },
1136
+ "projector": {
1137
+ "total": 2,
1138
+ "quantized": 0,
1139
+ "params_total": 13631488,
1140
+ "params_quantized": 0,
1141
+ "coverage": 0.0,
1142
+ "param_coverage": 0.0,
1143
+ "skipped_sample": [
1144
+ "multi_modal_projector.linear_1",
1145
+ "multi_modal_projector.linear_2"
1146
+ ],
1147
+ "skipped_count": 2
1148
+ },
1149
+ "vision": {
1150
+ "total": 164,
1151
+ "quantized": 0,
1152
+ "params_total": 412250112,
1153
+ "params_quantized": 0,
1154
+ "coverage": 0.0,
1155
+ "param_coverage": 0.0,
1156
+ "skipped_sample": [
1157
+ "vision_tower.embeddings.patch_embedding",
1158
+ "vision_tower.embeddings.position_embedding",
1159
+ "vision_tower.encoder.layers.0.mlp.fc1",
1160
+ "vision_tower.encoder.layers.0.mlp.fc2",
1161
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1162
+ ],
1163
+ "skipped_count": 164
1164
+ }
1165
+ },
1166
+ "coverage_ok": true,
1167
+ "benchmarks": [
1168
+ {
1169
+ "benchmark": "docvqa",
1170
+ "n": 100,
1171
+ "seed": 0,
1172
+ "max_image_tokens": 512,
1173
+ "max_num_patches": 2048,
1174
+ "accuracy": 0.8659,
1175
+ "accuracy_given_parsed": 0.8659,
1176
+ "parse_failure_rate": 0.0,
1177
+ "n_parsed": 100,
1178
+ "published": 91.1,
1179
+ "wall_seconds": 130.3,
1180
+ "parse_failure_samples": []
1181
+ },
1182
+ {
1183
+ "benchmark": "chartqa",
1184
+ "n": 100,
1185
+ "seed": 0,
1186
+ "max_image_tokens": 512,
1187
+ "max_num_patches": 2048,
1188
+ "accuracy": 0.88,
1189
+ "accuracy_given_parsed": 0.88,
1190
+ "parse_failure_rate": 0.0,
1191
+ "n_parsed": 100,
1192
+ "published": 81.3,
1193
+ "wall_seconds": 106.5,
1194
+ "parse_failure_samples": []
1195
+ },
1196
+ {
1197
+ "benchmark": "ocrbench",
1198
+ "n": 100,
1199
+ "seed": 0,
1200
+ "max_image_tokens": 512,
1201
+ "max_num_patches": 2048,
1202
+ "accuracy": 0.82,
1203
+ "accuracy_given_parsed": 0.82,
1204
+ "parse_failure_rate": 0.0,
1205
+ "n_parsed": 100,
1206
+ "published": 84.2,
1207
+ "wall_seconds": 105.7,
1208
+ "parse_failure_samples": []
1209
+ },
1210
+ {
1211
+ "benchmark": "screenspot_v2",
1212
+ "n": 100,
1213
+ "seed": 0,
1214
+ "max_image_tokens": 512,
1215
+ "max_num_patches": 2048,
1216
+ "accuracy": 0.78,
1217
+ "accuracy_given_parsed": 0.7879,
1218
+ "parse_failure_rate": 0.01,
1219
+ "n_parsed": 99,
1220
+ "published": 80.7,
1221
+ "wall_seconds": 153.9,
1222
+ "parse_failure_samples": [
1223
+ "[0.67, 0.1, 710, 740, 140]"
1224
+ ]
1225
+ },
1226
+ {
1227
+ "benchmark": "refcoco",
1228
+ "n": 100,
1229
+ "seed": 0,
1230
+ "max_image_tokens": 512,
1231
+ "max_num_patches": 2048,
1232
+ "accuracy": 0.86,
1233
+ "accuracy_given_parsed": 0.86,
1234
+ "parse_failure_rate": 0.0,
1235
+ "n_parsed": 100,
1236
+ "published": 87.9,
1237
+ "wall_seconds": 109.1,
1238
+ "parse_failure_samples": []
1239
+ }
1240
+ ],
1241
+ "mean_accuracy": 0.8412,
1242
+ "wall_seconds": 613.9
1243
+ },
1244
+ {
1245
+ "recipe": "only_backbone_6bit",
1246
+ "bits": {
1247
+ "vision": null,
1248
+ "projector": null,
1249
+ "backbone": 6,
1250
+ "embed_head": null,
1251
+ "other": null
1252
+ },
1253
+ "group_size": 64,
1254
+ "size_bytes": 3373829075,
1255
+ "size_gb": 3.374,
1256
+ "bits_per_weight": 8.59463508908614,
1257
+ "nominal_bits": 6,
1258
+ "coverage": {
1259
+ "embed_head": {
1260
+ "total": 1,
1261
+ "quantized": 0,
1262
+ "params_total": 262144000,
1263
+ "params_quantized": 0,
1264
+ "coverage": 0.0,
1265
+ "param_coverage": 0.0,
1266
+ "skipped_sample": [
1267
+ "language_model.model.embed_tokens"
1268
+ ],
1269
+ "skipped_count": 1
1270
+ },
1271
+ "backbone": {
1272
+ "total": 166,
1273
+ "quantized": 166,
1274
+ "params_total": 2434793472,
1275
+ "params_quantized": 2434793472,
1276
+ "coverage": 1.0,
1277
+ "param_coverage": 1.0,
1278
+ "skipped_sample": [],
1279
+ "skipped_count": 0
1280
+ },
1281
+ "projector": {
1282
+ "total": 2,
1283
+ "quantized": 0,
1284
+ "params_total": 13631488,
1285
+ "params_quantized": 0,
1286
+ "coverage": 0.0,
1287
+ "param_coverage": 0.0,
1288
+ "skipped_sample": [
1289
+ "multi_modal_projector.linear_1",
1290
+ "multi_modal_projector.linear_2"
1291
+ ],
1292
+ "skipped_count": 2
1293
+ },
1294
+ "vision": {
1295
+ "total": 164,
1296
+ "quantized": 0,
1297
+ "params_total": 412250112,
1298
+ "params_quantized": 0,
1299
+ "coverage": 0.0,
1300
+ "param_coverage": 0.0,
1301
+ "skipped_sample": [
1302
+ "vision_tower.embeddings.patch_embedding",
1303
+ "vision_tower.embeddings.position_embedding",
1304
+ "vision_tower.encoder.layers.0.mlp.fc1",
1305
+ "vision_tower.encoder.layers.0.mlp.fc2",
1306
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1307
+ ],
1308
+ "skipped_count": 164
1309
+ }
1310
+ },
1311
+ "coverage_ok": true,
1312
+ "benchmarks": [
1313
+ {
1314
+ "benchmark": "docvqa",
1315
+ "n": 100,
1316
+ "seed": 0,
1317
+ "max_image_tokens": 512,
1318
+ "max_num_patches": 2048,
1319
+ "accuracy": 0.8659,
1320
+ "accuracy_given_parsed": 0.8659,
1321
+ "parse_failure_rate": 0.0,
1322
+ "n_parsed": 100,
1323
+ "published": 91.1,
1324
+ "wall_seconds": 129.5,
1325
+ "parse_failure_samples": []
1326
+ },
1327
+ {
1328
+ "benchmark": "chartqa",
1329
+ "n": 100,
1330
+ "seed": 0,
1331
+ "max_image_tokens": 512,
1332
+ "max_num_patches": 2048,
1333
+ "accuracy": 0.87,
1334
+ "accuracy_given_parsed": 0.87,
1335
+ "parse_failure_rate": 0.0,
1336
+ "n_parsed": 100,
1337
+ "published": 81.3,
1338
+ "wall_seconds": 107.4,
1339
+ "parse_failure_samples": []
1340
+ },
1341
+ {
1342
+ "benchmark": "ocrbench",
1343
+ "n": 100,
1344
+ "seed": 0,
1345
+ "max_image_tokens": 512,
1346
+ "max_num_patches": 2048,
1347
+ "accuracy": 0.82,
1348
+ "accuracy_given_parsed": 0.82,
1349
+ "parse_failure_rate": 0.0,
1350
+ "n_parsed": 100,
1351
+ "published": 84.2,
1352
+ "wall_seconds": 104.3,
1353
+ "parse_failure_samples": []
1354
+ },
1355
+ {
1356
+ "benchmark": "screenspot_v2",
1357
+ "n": 100,
1358
+ "seed": 0,
1359
+ "max_image_tokens": 512,
1360
+ "max_num_patches": 2048,
1361
+ "accuracy": 0.8,
1362
+ "accuracy_given_parsed": 0.8081,
1363
+ "parse_failure_rate": 0.01,
1364
+ "n_parsed": 99,
1365
+ "published": 80.7,
1366
+ "wall_seconds": 149.2,
1367
+ "parse_failure_samples": [
1368
+ "[0.67, 0.1, 710, 740, 140]"
1369
+ ]
1370
+ },
1371
+ {
1372
+ "benchmark": "refcoco",
1373
+ "n": 100,
1374
+ "seed": 0,
1375
+ "max_image_tokens": 512,
1376
+ "max_num_patches": 2048,
1377
+ "accuracy": 0.86,
1378
+ "accuracy_given_parsed": 0.86,
1379
+ "parse_failure_rate": 0.0,
1380
+ "n_parsed": 100,
1381
+ "published": 87.9,
1382
+ "wall_seconds": 106.9,
1383
+ "parse_failure_samples": []
1384
+ }
1385
+ ],
1386
+ "mean_accuracy": 0.8432,
1387
+ "wall_seconds": 606.5
1388
+ },
1389
+ {
1390
+ "recipe": "only_backbone_4bit",
1391
+ "bits": {
1392
+ "vision": null,
1393
+ "projector": null,
1394
+ "backbone": 4,
1395
+ "embed_head": null,
1396
+ "other": null
1397
+ },
1398
+ "group_size": 64,
1399
+ "size_bytes": 2765130439,
1400
+ "size_gb": 2.765,
1401
+ "bits_per_weight": 7.0356108973147995,
1402
+ "nominal_bits": 4,
1403
+ "coverage": {
1404
+ "embed_head": {
1405
+ "total": 1,
1406
+ "quantized": 0,
1407
+ "params_total": 262144000,
1408
+ "params_quantized": 0,
1409
+ "coverage": 0.0,
1410
+ "param_coverage": 0.0,
1411
+ "skipped_sample": [
1412
+ "language_model.model.embed_tokens"
1413
+ ],
1414
+ "skipped_count": 1
1415
+ },
1416
+ "backbone": {
1417
+ "total": 166,
1418
+ "quantized": 166,
1419
+ "params_total": 2434793472,
1420
+ "params_quantized": 2434793472,
1421
+ "coverage": 1.0,
1422
+ "param_coverage": 1.0,
1423
+ "skipped_sample": [],
1424
+ "skipped_count": 0
1425
+ },
1426
+ "projector": {
1427
+ "total": 2,
1428
+ "quantized": 0,
1429
+ "params_total": 13631488,
1430
+ "params_quantized": 0,
1431
+ "coverage": 0.0,
1432
+ "param_coverage": 0.0,
1433
+ "skipped_sample": [
1434
+ "multi_modal_projector.linear_1",
1435
+ "multi_modal_projector.linear_2"
1436
+ ],
1437
+ "skipped_count": 2
1438
+ },
1439
+ "vision": {
1440
+ "total": 164,
1441
+ "quantized": 0,
1442
+ "params_total": 412250112,
1443
+ "params_quantized": 0,
1444
+ "coverage": 0.0,
1445
+ "param_coverage": 0.0,
1446
+ "skipped_sample": [
1447
+ "vision_tower.embeddings.patch_embedding",
1448
+ "vision_tower.embeddings.position_embedding",
1449
+ "vision_tower.encoder.layers.0.mlp.fc1",
1450
+ "vision_tower.encoder.layers.0.mlp.fc2",
1451
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1452
+ ],
1453
+ "skipped_count": 164
1454
+ }
1455
+ },
1456
+ "coverage_ok": true,
1457
+ "benchmarks": [
1458
+ {
1459
+ "benchmark": "docvqa",
1460
+ "n": 100,
1461
+ "seed": 0,
1462
+ "max_image_tokens": 512,
1463
+ "max_num_patches": 2048,
1464
+ "accuracy": 0.8806,
1465
+ "accuracy_given_parsed": 0.8806,
1466
+ "parse_failure_rate": 0.0,
1467
+ "n_parsed": 100,
1468
+ "published": 91.1,
1469
+ "wall_seconds": 125.9,
1470
+ "parse_failure_samples": []
1471
+ },
1472
+ {
1473
+ "benchmark": "chartqa",
1474
+ "n": 100,
1475
+ "seed": 0,
1476
+ "max_image_tokens": 512,
1477
+ "max_num_patches": 2048,
1478
+ "accuracy": 0.87,
1479
+ "accuracy_given_parsed": 0.87,
1480
+ "parse_failure_rate": 0.0,
1481
+ "n_parsed": 100,
1482
+ "published": 81.3,
1483
+ "wall_seconds": 104.3,
1484
+ "parse_failure_samples": []
1485
+ },
1486
+ {
1487
+ "benchmark": "ocrbench",
1488
+ "n": 100,
1489
+ "seed": 0,
1490
+ "max_image_tokens": 512,
1491
+ "max_num_patches": 2048,
1492
+ "accuracy": 0.82,
1493
+ "accuracy_given_parsed": 0.82,
1494
+ "parse_failure_rate": 0.0,
1495
+ "n_parsed": 100,
1496
+ "published": 84.2,
1497
+ "wall_seconds": 98.9,
1498
+ "parse_failure_samples": []
1499
+ },
1500
+ {
1501
+ "benchmark": "screenspot_v2",
1502
+ "n": 100,
1503
+ "seed": 0,
1504
+ "max_image_tokens": 512,
1505
+ "max_num_patches": 2048,
1506
+ "accuracy": 0.77,
1507
+ "accuracy_given_parsed": 0.77,
1508
+ "parse_failure_rate": 0.0,
1509
+ "n_parsed": 100,
1510
+ "published": 80.7,
1511
+ "wall_seconds": 139.0,
1512
+ "parse_failure_samples": []
1513
+ },
1514
+ {
1515
+ "benchmark": "refcoco",
1516
+ "n": 100,
1517
+ "seed": 0,
1518
+ "max_image_tokens": 512,
1519
+ "max_num_patches": 2048,
1520
+ "accuracy": 0.85,
1521
+ "accuracy_given_parsed": 0.85,
1522
+ "parse_failure_rate": 0.0,
1523
+ "n_parsed": 100,
1524
+ "published": 87.9,
1525
+ "wall_seconds": 101.4,
1526
+ "parse_failure_samples": []
1527
+ }
1528
+ ],
1529
+ "mean_accuracy": 0.8381,
1530
+ "wall_seconds": 578.1
1531
+ },
1532
+ {
1533
+ "recipe": "only_embed_head_8bit",
1534
+ "bits": {
1535
+ "vision": null,
1536
+ "projector": null,
1537
+ "backbone": null,
1538
+ "embed_head": 8,
1539
+ "other": null
1540
+ },
1541
+ "group_size": 64,
1542
+ "size_bytes": 6019286451,
1543
+ "size_gb": 6.019,
1544
+ "bits_per_weight": 15.370549018180176,
1545
+ "nominal_bits": 8,
1546
+ "coverage": {
1547
+ "embed_head": {
1548
+ "total": 1,
1549
+ "quantized": 1,
1550
+ "params_total": 262144000,
1551
+ "params_quantized": 262144000,
1552
+ "coverage": 1.0,
1553
+ "param_coverage": 1.0,
1554
+ "skipped_sample": [],
1555
+ "skipped_count": 0
1556
+ },
1557
+ "backbone": {
1558
+ "total": 166,
1559
+ "quantized": 0,
1560
+ "params_total": 2434793472,
1561
+ "params_quantized": 0,
1562
+ "coverage": 0.0,
1563
+ "param_coverage": 0.0,
1564
+ "skipped_sample": [
1565
+ "language_model.model.layers.0.conv.in_proj",
1566
+ "language_model.model.layers.0.conv.out_proj",
1567
+ "language_model.model.layers.0.feed_forward.w1",
1568
+ "language_model.model.layers.0.feed_forward.w2",
1569
+ "language_model.model.layers.0.feed_forward.w3"
1570
+ ],
1571
+ "skipped_count": 166
1572
+ },
1573
+ "projector": {
1574
+ "total": 2,
1575
+ "quantized": 0,
1576
+ "params_total": 13631488,
1577
+ "params_quantized": 0,
1578
+ "coverage": 0.0,
1579
+ "param_coverage": 0.0,
1580
+ "skipped_sample": [
1581
+ "multi_modal_projector.linear_1",
1582
+ "multi_modal_projector.linear_2"
1583
+ ],
1584
+ "skipped_count": 2
1585
+ },
1586
+ "vision": {
1587
+ "total": 164,
1588
+ "quantized": 0,
1589
+ "params_total": 412250112,
1590
+ "params_quantized": 0,
1591
+ "coverage": 0.0,
1592
+ "param_coverage": 0.0,
1593
+ "skipped_sample": [
1594
+ "vision_tower.embeddings.patch_embedding",
1595
+ "vision_tower.embeddings.position_embedding",
1596
+ "vision_tower.encoder.layers.0.mlp.fc1",
1597
+ "vision_tower.encoder.layers.0.mlp.fc2",
1598
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1599
+ ],
1600
+ "skipped_count": 164
1601
+ }
1602
+ },
1603
+ "coverage_ok": true,
1604
+ "benchmarks": [
1605
+ {
1606
+ "benchmark": "docvqa",
1607
+ "n": 100,
1608
+ "seed": 0,
1609
+ "max_image_tokens": 512,
1610
+ "max_num_patches": 2048,
1611
+ "accuracy": 0.8659,
1612
+ "accuracy_given_parsed": 0.8659,
1613
+ "parse_failure_rate": 0.0,
1614
+ "n_parsed": 100,
1615
+ "published": 91.1,
1616
+ "wall_seconds": 130.0,
1617
+ "parse_failure_samples": []
1618
+ },
1619
+ {
1620
+ "benchmark": "chartqa",
1621
+ "n": 100,
1622
+ "seed": 0,
1623
+ "max_image_tokens": 512,
1624
+ "max_num_patches": 2048,
1625
+ "accuracy": 0.88,
1626
+ "accuracy_given_parsed": 0.88,
1627
+ "parse_failure_rate": 0.0,
1628
+ "n_parsed": 100,
1629
+ "published": 81.3,
1630
+ "wall_seconds": 105.3,
1631
+ "parse_failure_samples": []
1632
+ },
1633
+ {
1634
+ "benchmark": "ocrbench",
1635
+ "n": 100,
1636
+ "seed": 0,
1637
+ "max_image_tokens": 512,
1638
+ "max_num_patches": 2048,
1639
+ "accuracy": 0.82,
1640
+ "accuracy_given_parsed": 0.82,
1641
+ "parse_failure_rate": 0.0,
1642
+ "n_parsed": 100,
1643
+ "published": 84.2,
1644
+ "wall_seconds": 116.2,
1645
+ "parse_failure_samples": []
1646
+ },
1647
+ {
1648
+ "benchmark": "screenspot_v2",
1649
+ "n": 100,
1650
+ "seed": 0,
1651
+ "max_image_tokens": 512,
1652
+ "max_num_patches": 2048,
1653
+ "accuracy": 0.79,
1654
+ "accuracy_given_parsed": 0.798,
1655
+ "parse_failure_rate": 0.01,
1656
+ "n_parsed": 99,
1657
+ "published": 80.7,
1658
+ "wall_seconds": 172.0,
1659
+ "parse_failure_samples": [
1660
+ "[0.67, 0.1, 710, 740, 140]"
1661
+ ]
1662
+ },
1663
+ {
1664
+ "benchmark": "refcoco",
1665
+ "n": 100,
1666
+ "seed": 0,
1667
+ "max_image_tokens": 512,
1668
+ "max_num_patches": 2048,
1669
+ "accuracy": 0.86,
1670
+ "accuracy_given_parsed": 0.86,
1671
+ "parse_failure_rate": 0.0,
1672
+ "n_parsed": 100,
1673
+ "published": 87.9,
1674
+ "wall_seconds": 121.0,
1675
+ "parse_failure_samples": []
1676
+ }
1677
+ ],
1678
+ "mean_accuracy": 0.8432,
1679
+ "wall_seconds": 653.9
1680
+ },
1681
+ {
1682
+ "recipe": "only_embed_head_6bit",
1683
+ "bits": {
1684
+ "vision": null,
1685
+ "projector": null,
1686
+ "backbone": null,
1687
+ "embed_head": 6,
1688
+ "other": null
1689
+ },
1690
+ "group_size": 64,
1691
+ "size_bytes": 5953750461,
1692
+ "size_gb": 5.954,
1693
+ "bits_per_weight": 15.202695423028224,
1694
+ "nominal_bits": 6,
1695
+ "coverage": {
1696
+ "embed_head": {
1697
+ "total": 1,
1698
+ "quantized": 1,
1699
+ "params_total": 262144000,
1700
+ "params_quantized": 262144000,
1701
+ "coverage": 1.0,
1702
+ "param_coverage": 1.0,
1703
+ "skipped_sample": [],
1704
+ "skipped_count": 0
1705
+ },
1706
+ "backbone": {
1707
+ "total": 166,
1708
+ "quantized": 0,
1709
+ "params_total": 2434793472,
1710
+ "params_quantized": 0,
1711
+ "coverage": 0.0,
1712
+ "param_coverage": 0.0,
1713
+ "skipped_sample": [
1714
+ "language_model.model.layers.0.conv.in_proj",
1715
+ "language_model.model.layers.0.conv.out_proj",
1716
+ "language_model.model.layers.0.feed_forward.w1",
1717
+ "language_model.model.layers.0.feed_forward.w2",
1718
+ "language_model.model.layers.0.feed_forward.w3"
1719
+ ],
1720
+ "skipped_count": 166
1721
+ },
1722
+ "projector": {
1723
+ "total": 2,
1724
+ "quantized": 0,
1725
+ "params_total": 13631488,
1726
+ "params_quantized": 0,
1727
+ "coverage": 0.0,
1728
+ "param_coverage": 0.0,
1729
+ "skipped_sample": [
1730
+ "multi_modal_projector.linear_1",
1731
+ "multi_modal_projector.linear_2"
1732
+ ],
1733
+ "skipped_count": 2
1734
+ },
1735
+ "vision": {
1736
+ "total": 164,
1737
+ "quantized": 0,
1738
+ "params_total": 412250112,
1739
+ "params_quantized": 0,
1740
+ "coverage": 0.0,
1741
+ "param_coverage": 0.0,
1742
+ "skipped_sample": [
1743
+ "vision_tower.embeddings.patch_embedding",
1744
+ "vision_tower.embeddings.position_embedding",
1745
+ "vision_tower.encoder.layers.0.mlp.fc1",
1746
+ "vision_tower.encoder.layers.0.mlp.fc2",
1747
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1748
+ ],
1749
+ "skipped_count": 164
1750
+ }
1751
+ },
1752
+ "coverage_ok": true,
1753
+ "benchmarks": [
1754
+ {
1755
+ "benchmark": "docvqa",
1756
+ "n": 100,
1757
+ "seed": 0,
1758
+ "max_image_tokens": 512,
1759
+ "max_num_patches": 2048,
1760
+ "accuracy": 0.8659,
1761
+ "accuracy_given_parsed": 0.8659,
1762
+ "parse_failure_rate": 0.0,
1763
+ "n_parsed": 100,
1764
+ "published": 91.1,
1765
+ "wall_seconds": 131.5,
1766
+ "parse_failure_samples": []
1767
+ },
1768
+ {
1769
+ "benchmark": "chartqa",
1770
+ "n": 100,
1771
+ "seed": 0,
1772
+ "max_image_tokens": 512,
1773
+ "max_num_patches": 2048,
1774
+ "accuracy": 0.87,
1775
+ "accuracy_given_parsed": 0.87,
1776
+ "parse_failure_rate": 0.0,
1777
+ "n_parsed": 100,
1778
+ "published": 81.3,
1779
+ "wall_seconds": 106.7,
1780
+ "parse_failure_samples": []
1781
+ },
1782
+ {
1783
+ "benchmark": "ocrbench",
1784
+ "n": 100,
1785
+ "seed": 0,
1786
+ "max_image_tokens": 512,
1787
+ "max_num_patches": 2048,
1788
+ "accuracy": 0.82,
1789
+ "accuracy_given_parsed": 0.82,
1790
+ "parse_failure_rate": 0.0,
1791
+ "n_parsed": 100,
1792
+ "published": 84.2,
1793
+ "wall_seconds": 115.7,
1794
+ "parse_failure_samples": []
1795
+ },
1796
+ {
1797
+ "benchmark": "screenspot_v2",
1798
+ "n": 100,
1799
+ "seed": 0,
1800
+ "max_image_tokens": 512,
1801
+ "max_num_patches": 2048,
1802
+ "accuracy": 0.78,
1803
+ "accuracy_given_parsed": 0.7879,
1804
+ "parse_failure_rate": 0.01,
1805
+ "n_parsed": 99,
1806
+ "published": 80.7,
1807
+ "wall_seconds": 173.2,
1808
+ "parse_failure_samples": [
1809
+ "[0.67, 0.1, 710, 740, 140]"
1810
+ ]
1811
+ },
1812
+ {
1813
+ "benchmark": "refcoco",
1814
+ "n": 100,
1815
+ "seed": 0,
1816
+ "max_image_tokens": 512,
1817
+ "max_num_patches": 2048,
1818
+ "accuracy": 0.85,
1819
+ "accuracy_given_parsed": 0.85,
1820
+ "parse_failure_rate": 0.0,
1821
+ "n_parsed": 100,
1822
+ "published": 87.9,
1823
+ "wall_seconds": 120.9,
1824
+ "parse_failure_samples": []
1825
+ }
1826
+ ],
1827
+ "mean_accuracy": 0.8372,
1828
+ "wall_seconds": 658.7
1829
+ },
1830
+ {
1831
+ "recipe": "only_embed_head_4bit",
1832
+ "bits": {
1833
+ "vision": null,
1834
+ "projector": null,
1835
+ "backbone": null,
1836
+ "embed_head": 4,
1837
+ "other": null
1838
+ },
1839
+ "group_size": 64,
1840
+ "size_bytes": 5888214479,
1841
+ "size_gb": 5.888,
1842
+ "bits_per_weight": 15.03484182787627,
1843
+ "nominal_bits": 4,
1844
+ "coverage": {
1845
+ "embed_head": {
1846
+ "total": 1,
1847
+ "quantized": 1,
1848
+ "params_total": 262144000,
1849
+ "params_quantized": 262144000,
1850
+ "coverage": 1.0,
1851
+ "param_coverage": 1.0,
1852
+ "skipped_sample": [],
1853
+ "skipped_count": 0
1854
+ },
1855
+ "backbone": {
1856
+ "total": 166,
1857
+ "quantized": 0,
1858
+ "params_total": 2434793472,
1859
+ "params_quantized": 0,
1860
+ "coverage": 0.0,
1861
+ "param_coverage": 0.0,
1862
+ "skipped_sample": [
1863
+ "language_model.model.layers.0.conv.in_proj",
1864
+ "language_model.model.layers.0.conv.out_proj",
1865
+ "language_model.model.layers.0.feed_forward.w1",
1866
+ "language_model.model.layers.0.feed_forward.w2",
1867
+ "language_model.model.layers.0.feed_forward.w3"
1868
+ ],
1869
+ "skipped_count": 166
1870
+ },
1871
+ "projector": {
1872
+ "total": 2,
1873
+ "quantized": 0,
1874
+ "params_total": 13631488,
1875
+ "params_quantized": 0,
1876
+ "coverage": 0.0,
1877
+ "param_coverage": 0.0,
1878
+ "skipped_sample": [
1879
+ "multi_modal_projector.linear_1",
1880
+ "multi_modal_projector.linear_2"
1881
+ ],
1882
+ "skipped_count": 2
1883
+ },
1884
+ "vision": {
1885
+ "total": 164,
1886
+ "quantized": 0,
1887
+ "params_total": 412250112,
1888
+ "params_quantized": 0,
1889
+ "coverage": 0.0,
1890
+ "param_coverage": 0.0,
1891
+ "skipped_sample": [
1892
+ "vision_tower.embeddings.patch_embedding",
1893
+ "vision_tower.embeddings.position_embedding",
1894
+ "vision_tower.encoder.layers.0.mlp.fc1",
1895
+ "vision_tower.encoder.layers.0.mlp.fc2",
1896
+ "vision_tower.encoder.layers.0.self_attn.k_proj"
1897
+ ],
1898
+ "skipped_count": 164
1899
+ }
1900
+ },
1901
+ "coverage_ok": true,
1902
+ "benchmarks": [
1903
+ {
1904
+ "benchmark": "docvqa",
1905
+ "n": 100,
1906
+ "seed": 0,
1907
+ "max_image_tokens": 512,
1908
+ "max_num_patches": 2048,
1909
+ "accuracy": 0.8647,
1910
+ "accuracy_given_parsed": 0.8647,
1911
+ "parse_failure_rate": 0.0,
1912
+ "n_parsed": 100,
1913
+ "published": 91.1,
1914
+ "wall_seconds": 130.1,
1915
+ "parse_failure_samples": []
1916
+ },
1917
+ {
1918
+ "benchmark": "chartqa",
1919
+ "n": 100,
1920
+ "seed": 0,
1921
+ "max_image_tokens": 512,
1922
+ "max_num_patches": 2048,
1923
+ "accuracy": 0.86,
1924
+ "accuracy_given_parsed": 0.86,
1925
+ "parse_failure_rate": 0.0,
1926
+ "n_parsed": 100,
1927
+ "published": 81.3,
1928
+ "wall_seconds": 105.2,
1929
+ "parse_failure_samples": []
1930
+ },
1931
+ {
1932
+ "benchmark": "ocrbench",
1933
+ "n": 100,
1934
+ "seed": 0,
1935
+ "max_image_tokens": 512,
1936
+ "max_num_patches": 2048,
1937
+ "accuracy": 0.82,
1938
+ "accuracy_given_parsed": 0.82,
1939
+ "parse_failure_rate": 0.0,
1940
+ "n_parsed": 100,
1941
+ "published": 84.2,
1942
+ "wall_seconds": 111.8,
1943
+ "parse_failure_samples": []
1944
+ },
1945
+ {
1946
+ "benchmark": "screenspot_v2",
1947
+ "n": 100,
1948
+ "seed": 0,
1949
+ "max_image_tokens": 512,
1950
+ "max_num_patches": 2048,
1951
+ "accuracy": 0.81,
1952
+ "accuracy_given_parsed": 0.8182,
1953
+ "parse_failure_rate": 0.01,
1954
+ "n_parsed": 99,
1955
+ "published": 80.7,
1956
+ "wall_seconds": 170.7,
1957
+ "parse_failure_samples": [
1958
+ "[0.67, 0.1, 710, 740, 140]"
1959
+ ]
1960
+ },
1961
+ {
1962
+ "benchmark": "refcoco",
1963
+ "n": 100,
1964
+ "seed": 0,
1965
+ "max_image_tokens": 512,
1966
+ "max_num_patches": 2048,
1967
+ "accuracy": 0.85,
1968
+ "accuracy_given_parsed": 0.85,
1969
+ "parse_failure_rate": 0.0,
1970
+ "n_parsed": 100,
1971
+ "published": 87.9,
1972
+ "wall_seconds": 119.3,
1973
+ "parse_failure_samples": []
1974
+ }
1975
+ ],
1976
+ "mean_accuracy": 0.8409,
1977
+ "wall_seconds": 646.3
1978
+ },
1979
+ {
1980
+ "recipe": "mixed_v8_p8_b4_e4",
1981
+ "bits": {
1982
+ "vision": 8,
1983
+ "projector": 8,
1984
+ "backbone": 4,
1985
+ "embed_head": 4,
1986
+ "other": null
1987
+ },
1988
+ "group_size": 64,
1989
+ "size_bytes": 2115737324,
1990
+ "size_gb": 2.116,
1991
+ "bits_per_weight": 5.372121119134135,
1992
+ "nominal_bits": 4,
1993
+ "coverage": {
1994
+ "embed_head": {
1995
+ "total": 1,
1996
+ "quantized": 1,
1997
+ "params_total": 262144000,
1998
+ "params_quantized": 262144000,
1999
+ "coverage": 1.0,
2000
+ "param_coverage": 1.0,
2001
+ "skipped_sample": [],
2002
+ "skipped_count": 0
2003
+ },
2004
+ "backbone": {
2005
+ "total": 166,
2006
+ "quantized": 166,
2007
+ "params_total": 2434793472,
2008
+ "params_quantized": 2434793472,
2009
+ "coverage": 1.0,
2010
+ "param_coverage": 1.0,
2011
+ "skipped_sample": [],
2012
+ "skipped_count": 0
2013
+ },
2014
+ "projector": {
2015
+ "total": 2,
2016
+ "quantized": 2,
2017
+ "params_total": 13631488,
2018
+ "params_quantized": 13631488,
2019
+ "coverage": 1.0,
2020
+ "param_coverage": 1.0,
2021
+ "skipped_sample": [],
2022
+ "skipped_count": 0
2023
+ },
2024
+ "vision": {
2025
+ "total": 164,
2026
+ "quantized": 135,
2027
+ "params_total": 412250112,
2028
+ "params_quantized": 277198848,
2029
+ "coverage": 0.8232,
2030
+ "param_coverage": 0.6724,
2031
+ "skipped_sample": [
2032
+ "vision_tower.embeddings.patch_embedding",
2033
+ "vision_tower.embeddings.position_embedding",
2034
+ "vision_tower.encoder.layers.0.mlp.fc2",
2035
+ "vision_tower.encoder.layers.1.mlp.fc2",
2036
+ "vision_tower.encoder.layers.10.mlp.fc2"
2037
+ ],
2038
+ "skipped_count": 29
2039
+ }
2040
+ },
2041
+ "coverage_ok": false,
2042
+ "benchmarks": [
2043
+ {
2044
+ "benchmark": "docvqa",
2045
+ "n": 100,
2046
+ "seed": 0,
2047
+ "max_image_tokens": 512,
2048
+ "max_num_patches": 2048,
2049
+ "accuracy": 0.8806,
2050
+ "accuracy_given_parsed": 0.8806,
2051
+ "parse_failure_rate": 0.0,
2052
+ "n_parsed": 100,
2053
+ "published": 91.1,
2054
+ "wall_seconds": 132.2,
2055
+ "parse_failure_samples": []
2056
+ },
2057
+ {
2058
+ "benchmark": "chartqa",
2059
+ "n": 100,
2060
+ "seed": 0,
2061
+ "max_image_tokens": 512,
2062
+ "max_num_patches": 2048,
2063
+ "accuracy": 0.85,
2064
+ "accuracy_given_parsed": 0.85,
2065
+ "parse_failure_rate": 0.0,
2066
+ "n_parsed": 100,
2067
+ "published": 81.3,
2068
+ "wall_seconds": 109.9,
2069
+ "parse_failure_samples": []
2070
+ },
2071
+ {
2072
+ "benchmark": "ocrbench",
2073
+ "n": 100,
2074
+ "seed": 0,
2075
+ "max_image_tokens": 512,
2076
+ "max_num_patches": 2048,
2077
+ "accuracy": 0.82,
2078
+ "accuracy_given_parsed": 0.82,
2079
+ "parse_failure_rate": 0.0,
2080
+ "n_parsed": 100,
2081
+ "published": 84.2,
2082
+ "wall_seconds": 103.5,
2083
+ "parse_failure_samples": []
2084
+ },
2085
+ {
2086
+ "benchmark": "screenspot_v2",
2087
+ "n": 100,
2088
+ "seed": 0,
2089
+ "max_image_tokens": 512,
2090
+ "max_num_patches": 2048,
2091
+ "accuracy": 0.77,
2092
+ "accuracy_given_parsed": 0.77,
2093
+ "parse_failure_rate": 0.0,
2094
+ "n_parsed": 100,
2095
+ "published": 80.7,
2096
+ "wall_seconds": 141.4,
2097
+ "parse_failure_samples": []
2098
+ },
2099
+ {
2100
+ "benchmark": "refcoco",
2101
+ "n": 100,
2102
+ "seed": 0,
2103
+ "max_image_tokens": 512,
2104
+ "max_num_patches": 2048,
2105
+ "accuracy": 0.85,
2106
+ "accuracy_given_parsed": 0.85,
2107
+ "parse_failure_rate": 0.0,
2108
+ "n_parsed": 100,
2109
+ "published": 87.9,
2110
+ "wall_seconds": 105.6,
2111
+ "parse_failure_samples": []
2112
+ }
2113
+ ],
2114
+ "mean_accuracy": 0.8341,
2115
+ "wall_seconds": 601.0
2116
+ },
2117
+ {
2118
+ "recipe": "mixed_v6_p8_b4_e4",
2119
+ "bits": {
2120
+ "vision": 6,
2121
+ "projector": 8,
2122
+ "backbone": 4,
2123
+ "embed_head": 4,
2124
+ "other": null
2125
+ },
2126
+ "group_size": 64,
2127
+ "size_bytes": 2046437600,
2128
+ "size_gb": 2.046,
2129
+ "bits_per_weight": 5.194627744466854,
2130
+ "nominal_bits": 4,
2131
+ "coverage": {
2132
+ "embed_head": {
2133
+ "total": 1,
2134
+ "quantized": 1,
2135
+ "params_total": 262144000,
2136
+ "params_quantized": 262144000,
2137
+ "coverage": 1.0,
2138
+ "param_coverage": 1.0,
2139
+ "skipped_sample": [],
2140
+ "skipped_count": 0
2141
+ },
2142
+ "backbone": {
2143
+ "total": 166,
2144
+ "quantized": 166,
2145
+ "params_total": 2434793472,
2146
+ "params_quantized": 2434793472,
2147
+ "coverage": 1.0,
2148
+ "param_coverage": 1.0,
2149
+ "skipped_sample": [],
2150
+ "skipped_count": 0
2151
+ },
2152
+ "projector": {
2153
+ "total": 2,
2154
+ "quantized": 2,
2155
+ "params_total": 13631488,
2156
+ "params_quantized": 13631488,
2157
+ "coverage": 1.0,
2158
+ "param_coverage": 1.0,
2159
+ "skipped_sample": [],
2160
+ "skipped_count": 0
2161
+ },
2162
+ "vision": {
2163
+ "total": 164,
2164
+ "quantized": 135,
2165
+ "params_total": 412250112,
2166
+ "params_quantized": 277198848,
2167
+ "coverage": 0.8232,
2168
+ "param_coverage": 0.6724,
2169
+ "skipped_sample": [
2170
+ "vision_tower.embeddings.patch_embedding",
2171
+ "vision_tower.embeddings.position_embedding",
2172
+ "vision_tower.encoder.layers.0.mlp.fc2",
2173
+ "vision_tower.encoder.layers.1.mlp.fc2",
2174
+ "vision_tower.encoder.layers.10.mlp.fc2"
2175
+ ],
2176
+ "skipped_count": 29
2177
+ }
2178
+ },
2179
+ "coverage_ok": false,
2180
+ "benchmarks": [
2181
+ {
2182
+ "benchmark": "docvqa",
2183
+ "n": 100,
2184
+ "seed": 0,
2185
+ "max_image_tokens": 512,
2186
+ "max_num_patches": 2048,
2187
+ "accuracy": 0.8899,
2188
+ "accuracy_given_parsed": 0.8899,
2189
+ "parse_failure_rate": 0.0,
2190
+ "n_parsed": 100,
2191
+ "published": 91.1,
2192
+ "wall_seconds": 130.8,
2193
+ "parse_failure_samples": []
2194
+ },
2195
+ {
2196
+ "benchmark": "chartqa",
2197
+ "n": 100,
2198
+ "seed": 0,
2199
+ "max_image_tokens": 512,
2200
+ "max_num_patches": 2048,
2201
+ "accuracy": 0.86,
2202
+ "accuracy_given_parsed": 0.86,
2203
+ "parse_failure_rate": 0.0,
2204
+ "n_parsed": 100,
2205
+ "published": 81.3,
2206
+ "wall_seconds": 110.4,
2207
+ "parse_failure_samples": []
2208
+ },
2209
+ {
2210
+ "benchmark": "ocrbench",
2211
+ "n": 100,
2212
+ "seed": 0,
2213
+ "max_image_tokens": 512,
2214
+ "max_num_patches": 2048,
2215
+ "accuracy": 0.82,
2216
+ "accuracy_given_parsed": 0.82,
2217
+ "parse_failure_rate": 0.0,
2218
+ "n_parsed": 100,
2219
+ "published": 84.2,
2220
+ "wall_seconds": 103.4,
2221
+ "parse_failure_samples": []
2222
+ },
2223
+ {
2224
+ "benchmark": "screenspot_v2",
2225
+ "n": 100,
2226
+ "seed": 0,
2227
+ "max_image_tokens": 512,
2228
+ "max_num_patches": 2048,
2229
+ "accuracy": 0.78,
2230
+ "accuracy_given_parsed": 0.78,
2231
+ "parse_failure_rate": 0.0,
2232
+ "n_parsed": 100,
2233
+ "published": 80.7,
2234
+ "wall_seconds": 142.4,
2235
+ "parse_failure_samples": []
2236
+ },
2237
+ {
2238
+ "benchmark": "refcoco",
2239
+ "n": 100,
2240
+ "seed": 0,
2241
+ "max_image_tokens": 512,
2242
+ "max_num_patches": 2048,
2243
+ "accuracy": 0.86,
2244
+ "accuracy_given_parsed": 0.86,
2245
+ "parse_failure_rate": 0.0,
2246
+ "n_parsed": 100,
2247
+ "published": 87.9,
2248
+ "wall_seconds": 105.2,
2249
+ "parse_failure_samples": []
2250
+ }
2251
+ ],
2252
+ "mean_accuracy": 0.842,
2253
+ "wall_seconds": 599.1
2254
+ },
2255
+ {
2256
+ "recipe": "mixed_v8_p8_b4_e6",
2257
+ "bits": {
2258
+ "vision": 8,
2259
+ "projector": 8,
2260
+ "backbone": 4,
2261
+ "embed_head": 6,
2262
+ "other": null
2263
+ },
2264
+ "group_size": 64,
2265
+ "size_bytes": 2181273324,
2266
+ "size_gb": 2.181,
2267
+ "bits_per_weight": 5.539974714286088,
2268
+ "nominal_bits": 4,
2269
+ "coverage": {
2270
+ "embed_head": {
2271
+ "total": 1,
2272
+ "quantized": 1,
2273
+ "params_total": 262144000,
2274
+ "params_quantized": 262144000,
2275
+ "coverage": 1.0,
2276
+ "param_coverage": 1.0,
2277
+ "skipped_sample": [],
2278
+ "skipped_count": 0
2279
+ },
2280
+ "backbone": {
2281
+ "total": 166,
2282
+ "quantized": 166,
2283
+ "params_total": 2434793472,
2284
+ "params_quantized": 2434793472,
2285
+ "coverage": 1.0,
2286
+ "param_coverage": 1.0,
2287
+ "skipped_sample": [],
2288
+ "skipped_count": 0
2289
+ },
2290
+ "projector": {
2291
+ "total": 2,
2292
+ "quantized": 2,
2293
+ "params_total": 13631488,
2294
+ "params_quantized": 13631488,
2295
+ "coverage": 1.0,
2296
+ "param_coverage": 1.0,
2297
+ "skipped_sample": [],
2298
+ "skipped_count": 0
2299
+ },
2300
+ "vision": {
2301
+ "total": 164,
2302
+ "quantized": 135,
2303
+ "params_total": 412250112,
2304
+ "params_quantized": 277198848,
2305
+ "coverage": 0.8232,
2306
+ "param_coverage": 0.6724,
2307
+ "skipped_sample": [
2308
+ "vision_tower.embeddings.patch_embedding",
2309
+ "vision_tower.embeddings.position_embedding",
2310
+ "vision_tower.encoder.layers.0.mlp.fc2",
2311
+ "vision_tower.encoder.layers.1.mlp.fc2",
2312
+ "vision_tower.encoder.layers.10.mlp.fc2"
2313
+ ],
2314
+ "skipped_count": 29
2315
+ }
2316
+ },
2317
+ "coverage_ok": false,
2318
+ "benchmarks": [
2319
+ {
2320
+ "benchmark": "docvqa",
2321
+ "n": 100,
2322
+ "seed": 0,
2323
+ "max_image_tokens": 512,
2324
+ "max_num_patches": 2048,
2325
+ "accuracy": 0.8806,
2326
+ "accuracy_given_parsed": 0.8806,
2327
+ "parse_failure_rate": 0.0,
2328
+ "n_parsed": 100,
2329
+ "published": 91.1,
2330
+ "wall_seconds": 130.8,
2331
+ "parse_failure_samples": []
2332
+ },
2333
+ {
2334
+ "benchmark": "chartqa",
2335
+ "n": 100,
2336
+ "seed": 0,
2337
+ "max_image_tokens": 512,
2338
+ "max_num_patches": 2048,
2339
+ "accuracy": 0.86,
2340
+ "accuracy_given_parsed": 0.86,
2341
+ "parse_failure_rate": 0.0,
2342
+ "n_parsed": 100,
2343
+ "published": 81.3,
2344
+ "wall_seconds": 109.4,
2345
+ "parse_failure_samples": []
2346
+ },
2347
+ {
2348
+ "benchmark": "ocrbench",
2349
+ "n": 100,
2350
+ "seed": 0,
2351
+ "max_image_tokens": 512,
2352
+ "max_num_patches": 2048,
2353
+ "accuracy": 0.82,
2354
+ "accuracy_given_parsed": 0.82,
2355
+ "parse_failure_rate": 0.0,
2356
+ "n_parsed": 100,
2357
+ "published": 84.2,
2358
+ "wall_seconds": 103.2,
2359
+ "parse_failure_samples": []
2360
+ },
2361
+ {
2362
+ "benchmark": "screenspot_v2",
2363
+ "n": 100,
2364
+ "seed": 0,
2365
+ "max_image_tokens": 512,
2366
+ "max_num_patches": 2048,
2367
+ "accuracy": 0.78,
2368
+ "accuracy_given_parsed": 0.78,
2369
+ "parse_failure_rate": 0.0,
2370
+ "n_parsed": 100,
2371
+ "published": 80.7,
2372
+ "wall_seconds": 141.5,
2373
+ "parse_failure_samples": []
2374
+ },
2375
+ {
2376
+ "benchmark": "refcoco",
2377
+ "n": 100,
2378
+ "seed": 0,
2379
+ "max_image_tokens": 512,
2380
+ "max_num_patches": 2048,
2381
+ "accuracy": 0.85,
2382
+ "accuracy_given_parsed": 0.85,
2383
+ "parse_failure_rate": 0.0,
2384
+ "n_parsed": 100,
2385
+ "published": 87.9,
2386
+ "wall_seconds": 105.0,
2387
+ "parse_failure_samples": []
2388
+ }
2389
+ ],
2390
+ "mean_accuracy": 0.8381,
2391
+ "wall_seconds": 596.9
2392
+ },
2393
+ {
2394
+ "recipe": "mixed_v6_p6_b4_e4",
2395
+ "bits": {
2396
+ "vision": 6,
2397
+ "projector": 6,
2398
+ "backbone": 4,
2399
+ "embed_head": 4,
2400
+ "other": null
2401
+ },
2402
+ "group_size": 64,
2403
+ "size_bytes": 2043029727,
2404
+ "size_gb": 2.043,
2405
+ "bits_per_weight": 5.185899357518952,
2406
+ "nominal_bits": 4,
2407
+ "coverage": {
2408
+ "embed_head": {
2409
+ "total": 1,
2410
+ "quantized": 1,
2411
+ "params_total": 262144000,
2412
+ "params_quantized": 262144000,
2413
+ "coverage": 1.0,
2414
+ "param_coverage": 1.0,
2415
+ "skipped_sample": [],
2416
+ "skipped_count": 0
2417
+ },
2418
+ "backbone": {
2419
+ "total": 166,
2420
+ "quantized": 166,
2421
+ "params_total": 2434793472,
2422
+ "params_quantized": 2434793472,
2423
+ "coverage": 1.0,
2424
+ "param_coverage": 1.0,
2425
+ "skipped_sample": [],
2426
+ "skipped_count": 0
2427
+ },
2428
+ "projector": {
2429
+ "total": 2,
2430
+ "quantized": 2,
2431
+ "params_total": 13631488,
2432
+ "params_quantized": 13631488,
2433
+ "coverage": 1.0,
2434
+ "param_coverage": 1.0,
2435
+ "skipped_sample": [],
2436
+ "skipped_count": 0
2437
+ },
2438
+ "vision": {
2439
+ "total": 164,
2440
+ "quantized": 135,
2441
+ "params_total": 412250112,
2442
+ "params_quantized": 277198848,
2443
+ "coverage": 0.8232,
2444
+ "param_coverage": 0.6724,
2445
+ "skipped_sample": [
2446
+ "vision_tower.embeddings.patch_embedding",
2447
+ "vision_tower.embeddings.position_embedding",
2448
+ "vision_tower.encoder.layers.0.mlp.fc2",
2449
+ "vision_tower.encoder.layers.1.mlp.fc2",
2450
+ "vision_tower.encoder.layers.10.mlp.fc2"
2451
+ ],
2452
+ "skipped_count": 29
2453
+ }
2454
+ },
2455
+ "coverage_ok": false,
2456
+ "benchmarks": [
2457
+ {
2458
+ "benchmark": "docvqa",
2459
+ "n": 100,
2460
+ "seed": 0,
2461
+ "max_image_tokens": 512,
2462
+ "max_num_patches": 2048,
2463
+ "accuracy": 0.8812,
2464
+ "accuracy_given_parsed": 0.8812,
2465
+ "parse_failure_rate": 0.0,
2466
+ "n_parsed": 100,
2467
+ "published": 91.1,
2468
+ "wall_seconds": 130.8,
2469
+ "parse_failure_samples": []
2470
+ },
2471
+ {
2472
+ "benchmark": "chartqa",
2473
+ "n": 100,
2474
+ "seed": 0,
2475
+ "max_image_tokens": 512,
2476
+ "max_num_patches": 2048,
2477
+ "accuracy": 0.87,
2478
+ "accuracy_given_parsed": 0.87,
2479
+ "parse_failure_rate": 0.0,
2480
+ "n_parsed": 100,
2481
+ "published": 81.3,
2482
+ "wall_seconds": 109.1,
2483
+ "parse_failure_samples": []
2484
+ },
2485
+ {
2486
+ "benchmark": "ocrbench",
2487
+ "n": 100,
2488
+ "seed": 0,
2489
+ "max_image_tokens": 512,
2490
+ "max_num_patches": 2048,
2491
+ "accuracy": 0.82,
2492
+ "accuracy_given_parsed": 0.82,
2493
+ "parse_failure_rate": 0.0,
2494
+ "n_parsed": 100,
2495
+ "published": 84.2,
2496
+ "wall_seconds": 103.0,
2497
+ "parse_failure_samples": []
2498
+ },
2499
+ {
2500
+ "benchmark": "screenspot_v2",
2501
+ "n": 100,
2502
+ "seed": 0,
2503
+ "max_image_tokens": 512,
2504
+ "max_num_patches": 2048,
2505
+ "accuracy": 0.78,
2506
+ "accuracy_given_parsed": 0.78,
2507
+ "parse_failure_rate": 0.0,
2508
+ "n_parsed": 100,
2509
+ "published": 80.7,
2510
+ "wall_seconds": 141.9,
2511
+ "parse_failure_samples": []
2512
+ },
2513
+ {
2514
+ "benchmark": "refcoco",
2515
+ "n": 100,
2516
+ "seed": 0,
2517
+ "max_image_tokens": 512,
2518
+ "max_num_patches": 2048,
2519
+ "accuracy": 0.86,
2520
+ "accuracy_given_parsed": 0.86,
2521
+ "parse_failure_rate": 0.0,
2522
+ "n_parsed": 100,
2523
+ "published": 87.9,
2524
+ "wall_seconds": 105.1,
2525
+ "parse_failure_samples": []
2526
+ }
2527
+ ],
2528
+ "mean_accuracy": 0.8422,
2529
+ "wall_seconds": 596.4
2530
+ }
2531
+ ]
2532
+ }
token_budget_sweep.json ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "LiquidAI/LFM2.5-VL-3B",
3
+ "n": 100,
4
+ "results": [
5
+ {
6
+ "benchmark": "screenspot_v2",
7
+ "n": 100,
8
+ "seed": 0,
9
+ "max_image_tokens": 128,
10
+ "max_num_patches": 512,
11
+ "accuracy": 0.57,
12
+ "accuracy_given_parsed": 0.57,
13
+ "parse_failure_rate": 0.0,
14
+ "n_parsed": 100,
15
+ "published": 80.7,
16
+ "wall_seconds": 197.2,
17
+ "parse_failure_samples": [],
18
+ "seconds_per_sample": 1.972
19
+ },
20
+ {
21
+ "benchmark": "screenspot_v2",
22
+ "n": 100,
23
+ "seed": 0,
24
+ "max_image_tokens": 256,
25
+ "max_num_patches": 1024,
26
+ "accuracy": 0.53,
27
+ "accuracy_given_parsed": 0.5408,
28
+ "parse_failure_rate": 0.02,
29
+ "n_parsed": 98,
30
+ "published": 80.7,
31
+ "wall_seconds": 227.7,
32
+ "parse_failure_samples": [
33
+ "[0.01, 0.12, 40, 50, 160]",
34
+ "[0.07, 0.3, 110, 173, 400]"
35
+ ],
36
+ "seconds_per_sample": 2.277
37
+ },
38
+ {
39
+ "benchmark": "screenspot_v2",
40
+ "n": 100,
41
+ "seed": 0,
42
+ "max_image_tokens": 512,
43
+ "max_num_patches": 2048,
44
+ "accuracy": 0.79,
45
+ "accuracy_given_parsed": 0.798,
46
+ "parse_failure_rate": 0.01,
47
+ "n_parsed": 99,
48
+ "published": 80.7,
49
+ "wall_seconds": 327.9,
50
+ "parse_failure_samples": [
51
+ "[0.67, 0.1, 710, 740, 140]"
52
+ ],
53
+ "seconds_per_sample": 3.279
54
+ },
55
+ {
56
+ "benchmark": "screenspot_v2",
57
+ "n": 100,
58
+ "seed": 0,
59
+ "max_image_tokens": 1024,
60
+ "max_num_patches": 4096,
61
+ "accuracy": 0.7,
62
+ "accuracy_given_parsed": 0.7143,
63
+ "parse_failure_rate": 0.02,
64
+ "n_parsed": 98,
65
+ "published": 80.7,
66
+ "wall_seconds": 544.2,
67
+ "parse_failure_samples": [
68
+ "[6]",
69
+ "[0.13, 0.3, 580, 580, 340]"
70
+ ],
71
+ "seconds_per_sample": 5.442
72
+ },
73
+ {
74
+ "benchmark": "refcoco",
75
+ "n": 100,
76
+ "seed": 0,
77
+ "max_image_tokens": 128,
78
+ "max_num_patches": 512,
79
+ "accuracy": 0.83,
80
+ "accuracy_given_parsed": 0.83,
81
+ "parse_failure_rate": 0.0,
82
+ "n_parsed": 100,
83
+ "published": 87.9,
84
+ "wall_seconds": 123.8,
85
+ "parse_failure_samples": [],
86
+ "seconds_per_sample": 1.238
87
+ },
88
+ {
89
+ "benchmark": "refcoco",
90
+ "n": 100,
91
+ "seed": 0,
92
+ "max_image_tokens": 256,
93
+ "max_num_patches": 1024,
94
+ "accuracy": 0.89,
95
+ "accuracy_given_parsed": 0.89,
96
+ "parse_failure_rate": 0.0,
97
+ "n_parsed": 100,
98
+ "published": 87.9,
99
+ "wall_seconds": 166.6,
100
+ "parse_failure_samples": [],
101
+ "seconds_per_sample": 1.666
102
+ },
103
+ {
104
+ "benchmark": "refcoco",
105
+ "n": 100,
106
+ "seed": 0,
107
+ "max_image_tokens": 512,
108
+ "max_num_patches": 2048,
109
+ "accuracy": 0.86,
110
+ "accuracy_given_parsed": 0.86,
111
+ "parse_failure_rate": 0.0,
112
+ "n_parsed": 100,
113
+ "published": 87.9,
114
+ "wall_seconds": 231.3,
115
+ "parse_failure_samples": [],
116
+ "seconds_per_sample": 2.313
117
+ },
118
+ {
119
+ "benchmark": "refcoco",
120
+ "n": 100,
121
+ "seed": 0,
122
+ "max_image_tokens": 1024,
123
+ "max_num_patches": 4096,
124
+ "accuracy": 0.89,
125
+ "accuracy_given_parsed": 0.89,
126
+ "parse_failure_rate": 0.0,
127
+ "n_parsed": 100,
128
+ "published": 87.9,
129
+ "wall_seconds": 359.0,
130
+ "parse_failure_samples": [],
131
+ "seconds_per_sample": 3.59
132
+ },
133
+ {
134
+ "benchmark": "docvqa",
135
+ "n": 100,
136
+ "seed": 0,
137
+ "max_image_tokens": 128,
138
+ "max_num_patches": 512,
139
+ "accuracy": 0.5538,
140
+ "accuracy_given_parsed": 0.5538,
141
+ "parse_failure_rate": 0.0,
142
+ "n_parsed": 100,
143
+ "published": 91.1,
144
+ "wall_seconds": 89.0,
145
+ "parse_failure_samples": [],
146
+ "seconds_per_sample": 0.89
147
+ },
148
+ {
149
+ "benchmark": "docvqa",
150
+ "n": 100,
151
+ "seed": 0,
152
+ "max_image_tokens": 256,
153
+ "max_num_patches": 1024,
154
+ "accuracy": 0.8034,
155
+ "accuracy_given_parsed": 0.8034,
156
+ "parse_failure_rate": 0.0,
157
+ "n_parsed": 100,
158
+ "published": 91.1,
159
+ "wall_seconds": 138.4,
160
+ "parse_failure_samples": [],
161
+ "seconds_per_sample": 1.384
162
+ },
163
+ {
164
+ "benchmark": "docvqa",
165
+ "n": 100,
166
+ "seed": 0,
167
+ "max_image_tokens": 512,
168
+ "max_num_patches": 2048,
169
+ "accuracy": 0.8659,
170
+ "accuracy_given_parsed": 0.8659,
171
+ "parse_failure_rate": 0.0,
172
+ "n_parsed": 100,
173
+ "published": 91.1,
174
+ "wall_seconds": 240.7,
175
+ "parse_failure_samples": [],
176
+ "seconds_per_sample": 2.407
177
+ },
178
+ {
179
+ "benchmark": "docvqa",
180
+ "n": 100,
181
+ "seed": 0,
182
+ "max_image_tokens": 1024,
183
+ "max_num_patches": 4096,
184
+ "accuracy": 0.8133,
185
+ "accuracy_given_parsed": 0.8133,
186
+ "parse_failure_rate": 0.0,
187
+ "n_parsed": 100,
188
+ "published": 91.1,
189
+ "wall_seconds": 422.7,
190
+ "parse_failure_samples": [],
191
+ "seconds_per_sample": 4.227
192
+ }
193
+ ]
194
+ }
uniform4_coverage_verified.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model": "LiquidAI/LFM2.5-VL-3B",
3
+ "finding": "uniform 4-bit requested on all components; vision tower silently retains 32.5% of params at bf16",
4
+ "recipe": "uniform_4bit",
5
+ "group_size": 64,
6
+ "size_bytes": 1968627677,
7
+ "size_gb": 1.969,
8
+ "eligible_modules": 333,
9
+ "eligible_params": 3122819072,
10
+ "coverage_verified_from_saved_weights": {
11
+ "embed_head": {
12
+ "total": 1,
13
+ "quantized": 1,
14
+ "params_total": 262144000,
15
+ "params_quantized": 262144000,
16
+ "coverage": 1.0,
17
+ "param_coverage": 1.0,
18
+ "skipped_sample": [],
19
+ "skipped_count": 0
20
+ },
21
+ "backbone": {
22
+ "total": 166,
23
+ "quantized": 166,
24
+ "params_total": 2434793472,
25
+ "params_quantized": 2434793472,
26
+ "coverage": 1.0,
27
+ "param_coverage": 1.0,
28
+ "skipped_sample": [],
29
+ "skipped_count": 0
30
+ },
31
+ "projector": {
32
+ "total": 2,
33
+ "quantized": 2,
34
+ "params_total": 13631488,
35
+ "params_quantized": 13631488,
36
+ "coverage": 1.0,
37
+ "param_coverage": 1.0,
38
+ "skipped_sample": [],
39
+ "skipped_count": 0
40
+ },
41
+ "vision": {
42
+ "total": 164,
43
+ "quantized": 137,
44
+ "params_total": 412250112,
45
+ "params_quantized": 278378496,
46
+ "coverage": 0.8354,
47
+ "param_coverage": 0.6753,
48
+ "skipped_sample": [
49
+ "vision_tower.encoder.layers.0.mlp.fc2",
50
+ "vision_tower.encoder.layers.1.mlp.fc2",
51
+ "vision_tower.encoder.layers.10.mlp.fc2",
52
+ "vision_tower.encoder.layers.11.mlp.fc2",
53
+ "vision_tower.encoder.layers.12.mlp.fc2"
54
+ ],
55
+ "skipped_count": 27
56
+ }
57
+ }
58
+ }