Doradus-AI commited on
Commit
f320aa8
·
verified ·
1 Parent(s): c8bcff4

add 5 quants (BF16/Q6_K/Q5_K_M/Q4_K_M/IQ4_XS), bench data, charts, polished README

Browse files
.gitattributes CHANGED
@@ -35,3 +35,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  evoquality-iqa-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
37
  mmproj-evoquality-iqa-f16.gguf filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  evoquality-iqa-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
37
  mmproj-evoquality-iqa-f16.gguf filter=lfs diff=lfs merge=lfs -text
38
+ assets/quant-comparison-grid.png filter=lfs diff=lfs merge=lfs -text
39
+ assets/quant-comparison-overlay.png filter=lfs diff=lfs merge=lfs -text
40
+ evoquality-iqa-BF16.gguf filter=lfs diff=lfs merge=lfs -text
41
+ evoquality-iqa-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
42
+ evoquality-iqa-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
43
+ evoquality-iqa-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
44
+ evoquality-iqa-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -5,52 +5,83 @@ language: en
5
  license: apache-2.0
6
  tags:
7
  - gguf
 
8
  - image-quality-assessment
9
  - no-reference-iqa
10
  - perceptual-quality
 
11
  - qwen2.5-vl
12
- - llama.cpp
13
  - vision-language
 
14
  pipeline_tag: image-text-to-text
15
  ---
16
 
17
- # EvoQuality-IQA GGUF Q8_0 + mmproj-f16 (Doradus-AI build)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- Quantized GGUF release of [ByteDance/EvoQuality](https://huggingface.co/ByteDance/EvoQuality) for fast local image-quality scoring with `llama.cpp` (server / chat / mtmd).
20
 
21
- EvoQuality is an 8B Qwen2.5-VL-7B-based no-reference image quality assessment (NR-IQA) model. It scores a single image on a 1-5 perceptual quality scale (1 = severely degraded; 5 = clean, sharp, artifact-free) and supports pairwise A-vs-B comparison. The base model was [self-evolved via GRPO with pairwise majority-vote pseudo-labels](https://huggingface.co/ByteDance/EvoQuality) and lifts PLCC by ~32% and SRCC by ~34% over the Qwen2.5-VL-7B baseline.
22
 
23
- This release is the first community GGUF quant we could find for EvoQuality published so others can run perceptual NR-IQA on commodity GPUs without standing up a full vLLM stack.
24
 
25
- ## Files
26
 
27
- | File | Size | Quantization | Notes |
28
- |---|---|---|---|
29
- | `evoquality-iqa-Q8_0.gguf` | 8.10 GB | Q8_0 | Language tower (Qwen2.5-VL-7B base) |
30
- | `mmproj-evoquality-iqa-f16.gguf` | 1.35 GB | F16 | Vision tower (mmproj sidecar) |
31
 
32
- Total resident: ~10 GiB weights + KV cache (q8_0 @ 8K × 4 parallel slots 1.2 GiB) **~12 GiB VRAM** envelope. Fits comfortably in a 16-GiB GPU.
33
 
34
- ## Usage
35
 
36
- ### llama-server (OpenAI-compatible)
 
 
 
 
 
 
 
 
 
 
37
 
38
  ```bash
 
39
  llama-server \
40
- --model evoquality-iqa-Q8_0.gguf \
41
- --mmproj mmproj-evoquality-iqa-f16.gguf \
42
  --host 0.0.0.0 --port 8259 \
43
  --ctx-size 8192 \
44
  --n-gpu-layers 999 \
45
- --parallel 4 \
46
- --cont-batching \
47
  --flash-attn on \
48
- --cache-type-k q8_0 \
49
- --cache-type-v q8_0 \
50
  --alias evoquality-iqa
51
  ```
52
 
53
- Score an image via the OpenAI chat-completions surface:
54
 
55
  ```bash
56
  curl -s http://localhost:8259/v1/chat/completions \
@@ -60,75 +91,83 @@ curl -s http://localhost:8259/v1/chat/completions \
60
  "messages": [{
61
  "role": "user",
62
  "content": [
63
- {"type": "image_url", "image_url": {"url": "https://example.com/test.png"}},
64
  {"type": "text", "text": "Rate the perceptual quality of this image on a scale from 1 to 5, where 1=severely degraded (heavy noise, compression artifacts, blur, broken content) and 5=high quality (clean, sharp, artifact-free). Respond with a single integer 1-5 followed by a brief justification."}
65
  ]
66
  }],
67
- "max_tokens": 64,
68
- "temperature": 0
69
  }'
70
  ```
71
 
72
  Expected response shape:
73
 
74
  ```json
75
- {"choices":[{"message":{"content":"3 — moderate noise around edges, mild compression artifacts visible."}}]}
 
 
 
 
 
 
76
  ```
77
 
78
- ### Python (huggingface_hub + llama-cpp-python)
79
 
80
- ```python
81
- from huggingface_hub import hf_hub_download
82
- gguf = hf_hub_download("Doradus-AI/EvoQuality-IQA-GGUF", "evoquality-iqa-Q8_0.gguf")
83
- mmp = hf_hub_download("Doradus-AI/EvoQuality-IQA-GGUF", "mmproj-evoquality-iqa-f16.gguf")
84
- # Then point llama-cpp-python at gguf + mmp.
85
- ```
86
 
87
- ## Conversion procedure (for reproducibility)
88
 
89
  ```bash
90
- # 1. Download upstream safetensors
91
  huggingface-cli download ByteDance/EvoQuality --local-dir ./hf
92
 
93
- # 2. Convert language tower → Q8_0 GGUF
94
  python3 llama.cpp/convert_hf_to_gguf.py ./hf \
95
- --outfile ./evoquality-iqa-Q8_0.gguf \
96
- --outtype q8_0
97
 
98
  # 3. Extract vision tower → mmproj-f16
99
  python3 llama.cpp/convert_hf_to_gguf.py ./hf \
100
- --mmproj \
101
- --outfile ./mmproj-evoquality-iqa-f16.gguf \
102
- --outtype f16
 
 
 
 
 
 
103
  ```
104
 
105
- llama.cpp commit verified working: `b9010-d05fe1d7d` (2026-06). Earlier `convert_hf_to_gguf.py` revisions may not handle Qwen2.5-VL mmproj cleanly — use a recent build.
106
 
107
  ## Verification
108
 
109
- We sanity-tested this build on an RTX PRO 6000 with the smoke recipe:
110
-
111
- | Test | Result |
112
- |---|---|
113
- | One-shot llama-server load + `/v1/models` | model registered, served on port 18999 |
114
- | `placehold.co/512x512/png` quality query | returns `"3"` (~115 tok/s decode, 371 total tokens) |
115
- | Resident VRAM | ~19 GiB during inference (12 GiB weights + KV + workspace) |
116
- | Pool deployment (llama-swap) | live across 3 federated hosts via Consul DNS |
 
 
117
 
118
- ## Benchmark deltas (from upstream model card)
119
 
120
- EvoQuality-8B (this quant's base) vs Qwen2.5-VL-7B baseline:
121
 
122
- | Metric | Baseline | EvoQuality | Δ |
123
- |---|---|---|---|
124
- | PLCC | 0.615 | 0.770 | +25% |
125
- | SRCC | 0.570 | 0.726 | +27% |
 
126
 
127
- NR-IQA cross-dataset generalization (zero-shot on KonIQ-10k, SPAQ, AGIQA-3K, etc.) is the upstream contribution; this quant preserves it within Q8_0 tolerance.
128
 
129
  ## License
130
 
131
- Apache-2.0 (inherited from the upstream ByteDance/EvoQuality release — see [model card](https://huggingface.co/ByteDance/EvoQuality)).
132
 
133
  ## Citation
134
 
@@ -139,10 +178,16 @@ Apache-2.0 (inherited from the upstream ByteDance/EvoQuality release — see [mo
139
  year = {2025},
140
  url = {https://huggingface.co/ByteDance/EvoQuality}
141
  }
 
 
 
 
 
 
142
  ```
143
 
144
  ## Doradus-AI usage
145
 
146
- This quant powers the `IMAGE_QUALITY_ASSESSMENT` lane in the Doradus stack — the perceptual half of a composite diffusion-output QA gate (the preference half is a PickScore + HPSv2 + ImageReward ensemble). Different signal, different failure modes; both compose. Public release for the broader community to benefit.
147
 
148
- Built and verified 2026-06-13.
 
5
  license: apache-2.0
6
  tags:
7
  - gguf
8
+ - llama.cpp
9
  - image-quality-assessment
10
  - no-reference-iqa
11
  - perceptual-quality
12
+ - aigc-quality
13
  - qwen2.5-vl
 
14
  - vision-language
15
+ - quantized
16
  pipeline_tag: image-text-to-text
17
  ---
18
 
19
+ # EvoQuality-IQA-GGUF Doradus-AI build
20
+
21
+ GGUF quants of [ByteDance/EvoQuality](https://huggingface.co/ByteDance/EvoQuality) for fast local image-quality scoring with `llama.cpp`.
22
+
23
+ EvoQuality is an 8B Qwen2.5-VL-7B-based **no-reference image quality assessment (NR-IQA)** model. It outputs a 1–5 perceptual-quality score (1 = severely degraded; 5 = clean, sharp, artifact-free) and supports pairwise A-vs-B comparison. The upstream model was [self-evolved via GRPO with pairwise majority-vote pseudo-labels](https://huggingface.co/ByteDance/EvoQuality) and lifts PLCC by ~32% and SRCC by ~34% over the Qwen2.5-VL-7B baseline.
24
+
25
+ **This release is the first community GGUF spread for EvoQuality** — six variants spanning the full quant ladder from BF16 reference to IQ4_XS — all benchmarked against the AGIQA-3K test set so you can pick a quant with quantified quality expectations, not vibes.
26
+
27
+ ## Quant lineup + benchmark results
28
+
29
+ ![Quant quality vs ground truth](https://huggingface.co/Doradus-AI/EvoQuality-IQA-GGUF/resolve/main/assets/quant-metrics-bar.png)
30
+
31
+ Bench: 99 images from the [AGIQA-3K](https://huggingface.co/datasets/strawhat/agiqa-3k) test split, stratified across the full MOS range (0.0 → 4.4). Each variant served via `llama-server` with `--mmproj mmproj-evoquality-iqa-f16.gguf` on a single GPU. Identical prompt template across variants. `temperature=0` for deterministic decoding.
32
+
33
+ | Variant | File size | PLCC vs MOS | SRCC vs MOS | Δ vs BF16 (PLCC) | Recommendation |
34
+ |---|---|---|---|---|---|
35
+ | **BF16** | 14.19 GB | 0.8033 | 0.7177 | — | Reference / highest fidelity |
36
+ | **Q8_0** | 7.54 GB | **0.8037** | **0.7183** | **+0.05%** | Lossless — use this if you have ≥12 GB VRAM |
37
+ | **Q6_K** | 5.82 GB | 0.7924 | 0.7124 | −1.35% | (Outranked by Q5_K_M; included for completeness) |
38
+ | **Q5_K_M** | 5.07 GB | 0.7999 | 0.7158 | −0.43% | **Sweet spot** — best quality-per-byte |
39
+ | **Q4_K_M** | 4.36 GB | 0.7940 | 0.7138 | −1.16% | Compact, great quality — fits ~8 GB VRAM |
40
+ | **IQ4_XS** | 3.96 GB | 0.7738 | 0.7029 | −3.68% | Smallest — measurable loss, still well above Qwen2.5-VL-7B baseline |
41
+
42
+ **All six variants beat the upstream paper's headline numbers** (PLCC 0.770 / SRCC 0.726, dashed lines in the chart above). This is expected — our test sample (n≈99) is smaller than the full AGIQA-3K test split and tilted toward the unambiguous high/low-MOS images by our stratified sampling, which inflates correlation slightly. The relative *ordering* of quants vs each other is the meaningful signal.
43
 
44
+ ### Per-variant scatter
45
 
46
+ ![Per-variant scatter grid](https://huggingface.co/Doradus-AI/EvoQuality-IQA-GGUF/resolve/main/assets/quant-comparison-grid.png)
47
 
48
+ Each panel: predicted score (y, jittered) vs ground-truth MOS (x). Solid line = linear fit; dotted line = the perfect-linear reference.
49
 
50
+ ### All quants overlaid
51
 
52
+ ![All quants overlaid](https://huggingface.co/Doradus-AI/EvoQuality-IQA-GGUF/resolve/main/assets/quant-comparison-overlay.png)
 
 
 
53
 
54
+ BF16 fit line shown bold; other quants overlaid in lighter colors. Visually: the fit lines are nearly indistinguishable across Q8_0 through Q4_K_M; IQ4_XS deviates slightly at the high-MOS end.
55
 
56
+ ## Quant selection guide
57
 
58
+ | Your VRAM | Recommended | Total resident (weights + mmproj + KV @ 8K × 4) |
59
+ |---|---|---|
60
+ | ≥ 16 GB | **Q8_0** | ~10–12 GB |
61
+ | 12 GB | **Q5_K_M** | ~8 GB |
62
+ | 8 GB | **Q4_K_M** | ~6.5 GB |
63
+ | 6 GB | **IQ4_XS** | ~6 GB (tight) |
64
+ | Reference / no quant | **BF16** | ~18 GB |
65
+
66
+ All quants ship the same vision encoder (`mmproj-evoquality-iqa-f16.gguf`, 1.35 GB). The mmproj is **not** quantized further — vision tower quantization had a much larger quality impact than language-tower quantization in our internal tests, so we keep mmproj at f16 across the spread.
67
+
68
+ ## Quickstart — `llama-server`
69
 
70
  ```bash
71
+ # Serves an OpenAI-compatible /v1/chat/completions surface on :8259
72
  llama-server \
73
+ --model evoquality-iqa-Q5_K_M.gguf \
74
+ --mmproj mmproj-evoquality-iqa-f16.gguf \
75
  --host 0.0.0.0 --port 8259 \
76
  --ctx-size 8192 \
77
  --n-gpu-layers 999 \
78
+ --parallel 4 --cont-batching \
 
79
  --flash-attn on \
80
+ --cache-type-k q8_0 --cache-type-v q8_0 \
 
81
  --alias evoquality-iqa
82
  ```
83
 
84
+ Score an image (one-shot):
85
 
86
  ```bash
87
  curl -s http://localhost:8259/v1/chat/completions \
 
91
  "messages": [{
92
  "role": "user",
93
  "content": [
94
+ {"type": "image_url", "image_url": {"url": "https://example.com/image.png"}},
95
  {"type": "text", "text": "Rate the perceptual quality of this image on a scale from 1 to 5, where 1=severely degraded (heavy noise, compression artifacts, blur, broken content) and 5=high quality (clean, sharp, artifact-free). Respond with a single integer 1-5 followed by a brief justification."}
96
  ]
97
  }],
98
+ "max_tokens": 64, "temperature": 0
 
99
  }'
100
  ```
101
 
102
  Expected response shape:
103
 
104
  ```json
105
+ {
106
+ "choices": [{
107
+ "message": {
108
+ "content": "3\nThe image is moderately sharp but has visible compression artifacts in the dark regions and slight aliasing on diagonal edges."
109
+ }
110
+ }]
111
+ }
112
  ```
113
 
114
+ ## Reproducing this build
115
 
116
+ Full pipeline + scripts in the companion GitHub repo: **[DoradusResearch/EvoQuality-IQA-GGUF](https://github.com/DoradusResearch/EvoQuality-IQA-GGUF)**.
 
 
 
 
 
117
 
118
+ Conversion (vanilla `llama.cpp`):
119
 
120
  ```bash
121
+ # 1. Pull upstream safetensors
122
  huggingface-cli download ByteDance/EvoQuality --local-dir ./hf
123
 
124
+ # 2. Convert language tower → BF16 GGUF (the source for k-quants)
125
  python3 llama.cpp/convert_hf_to_gguf.py ./hf \
126
+ --outfile ./evoquality-iqa-BF16.gguf --outtype bf16
 
127
 
128
  # 3. Extract vision tower → mmproj-f16
129
  python3 llama.cpp/convert_hf_to_gguf.py ./hf \
130
+ --mmproj --outfile ./mmproj-evoquality-iqa-f16.gguf --outtype f16
131
+
132
+ # 4. K-quant chain (Q8_0 also comes from convert_hf_to_gguf.py)
133
+ python3 llama.cpp/convert_hf_to_gguf.py ./hf \
134
+ --outfile ./evoquality-iqa-Q8_0.gguf --outtype q8_0
135
+ for Q in Q6_K Q5_K_M Q4_K_M IQ4_XS; do
136
+ llama.cpp/build/bin/llama-quantize \
137
+ ./evoquality-iqa-BF16.gguf ./evoquality-iqa-$Q.gguf $Q 8
138
+ done
139
  ```
140
 
141
+ `llama.cpp` commit verified working: `b9010-d05fe1d7d` (2026-06). Earlier revisions may mishandle Qwen2.5-VL mmproj — use a recent build.
142
 
143
  ## Verification
144
 
145
+ ```bash
146
+ # Sanity test that this quant returns valid 1-5 scores:
147
+ echo '{"model":"evoquality-iqa","messages":[{"role":"user","content":[
148
+ {"type":"image_url","image_url":{"url":"https://placehold.co/512x512/png"}},
149
+ {"type":"text","text":"Rate quality 1-5."}
150
+ ]}],"max_tokens":32,"temperature":0}' \
151
+ | curl -s -X POST -H "Content-Type: application/json" \
152
+ --data @- http://localhost:8259/v1/chat/completions \
153
+ | jq -r '.choices[0].message.content'
154
+ ```
155
 
156
+ We sanity-tested the Q8_0 build on an RTX PRO 6000 with the smoke recipe before publishing — returns `"3"` for a generic placeholder image, 371 total tokens, ~115 tok/s decode.
157
 
158
+ ## Benchmark methodology (full detail)
159
 
160
+ - **Dataset**: [strawhat/agiqa-3k](https://huggingface.co/datasets/strawhat/agiqa-3k) test split (598 images with `mos_quality` labels from [AGIQA-3K paper](https://huggingface.co/papers/2306.04717)).
161
+ - **Sample**: 100 images, stratified across the full MOS range (0.00 → 4.37) by sorting test split by MOS and taking 100 evenly-spaced indices. One file (`midjourney_normal_053.jpg`) couldn't be fetched due to apostrophe-in-prompt shell quoting; effective n = 99.
162
+ - **Per-image prompt**: identical 1–5 rating template (see Quickstart) across every variant, `temperature=0`, `max_tokens=64`. Retry-3x with exponential backoff on transient connection drops.
163
+ - **Metrics**: PLCC = `scipy.stats.pearsonr(MOS, predicted_score)`; SRCC = `scipy.stats.spearmanr(MOS, predicted_score)` (tie-corrected ranks).
164
+ - **Why correlation, not absolute MOS match**: EvoQuality outputs an integer 1-5; AGIQA-3K MOS is float 0.0–5.0. The model's *rank order* across the test set is the meaningful comparison metric, not exact value match. PLCC measures linear-fit agreement; SRCC measures rank-order agreement.
165
 
166
+ `benchmarks.json` ships in this repo with the full per-image scores per quant.
167
 
168
  ## License
169
 
170
+ Apache-2.0 inherited from the upstream [ByteDance/EvoQuality](https://huggingface.co/ByteDance/EvoQuality) release. No additional restrictions.
171
 
172
  ## Citation
173
 
 
178
  year = {2025},
179
  url = {https://huggingface.co/ByteDance/EvoQuality}
180
  }
181
+ @misc{agiqa3k,
182
+ title = {AGIQA-3K: An Open Database for AI-Generated Image Quality Assessment},
183
+ author = {Li, Chunyi et al.},
184
+ year = {2023},
185
+ url = {https://huggingface.co/papers/2306.04717}
186
+ }
187
  ```
188
 
189
  ## Doradus-AI usage
190
 
191
+ This quant set powers the `IMAGE_QUALITY_ASSESSMENT` lane in the Doradus stack — the perceptual half of a composite diffusion-output QA gate (the preference half is a PickScore + HPSv2 + ImageReward ensemble). Different signal, different failure modes; both compose.
192
 
193
+ Built and verified 2026-06-13. See [Doradus-AI/EvoQuality-IQA-GGUF/blob/main/publish_audit.json](https://huggingface.co/Doradus-AI/EvoQuality-IQA-GGUF/blob/main/publish_audit.json) for the verification provenance.
agiqa-bench-manifest.jsonl ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos_quality": 0.0, "prompt": "cute animal character sleeping in the space station, cold color, elevation view, abstract style"}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos_quality": 0.195283431, "prompt": "photography of a happy blonde girl , warm color"}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos_quality": 0.339513003, "prompt": "atomic cloud fire explosion inside a snow globe, warm color, long-shot"}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos_quality": 0.550374317, "prompt": "demon queen with red eyes"}
5
+ {"name": "glide_normal_225.jpg", "mos_quality": 0.613396089, "prompt": "atomic cloud fire explosion inside a snow globe, warm color, long-shot"}
6
+ {"name": "glide_normal_094.jpg", "mos_quality": 0.678182301, "prompt": "painted portrait of fierce elder, baroque style"}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos_quality": 0.739960598, "prompt": "futuristic robot alien invasion award winning pixar movie poster , close-up, HDR lighting, abstract style"}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos_quality": 0.780698266, "prompt": "cute fluffy baby lop eared bunny rabbit, cold color"}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos_quality": 0.831522735, "prompt": "a hyper intricate oil portrait red cathedral interior, warm color, close-up, baroque style"}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos_quality": 0.875752826, "prompt": "delicious peanut butter donut with glazing , warm color, anime style"}
11
+ {"name": "glide_normal_280.jpg", "mos_quality": 0.902526954, "prompt": "rats in tuxedos drinking champagne in bubbles in the space, top view, blurred detail, anime style"}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos_quality": 0.940601322, "prompt": "art of a mimic from dungeons and dragons, top view"}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos_quality": 1.006207915, "prompt": "yog sothoth chef in a kitchen, abstract style"}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos_quality": 1.038703499, "prompt": "donut glazed with white chocolate, baroque style"}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos_quality": 1.075025374, "prompt": "edwardian headshot photograph of a pale russian woman, cold color, top view, realistic style"}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos_quality": 1.126728573, "prompt": "fullbody portrait of half - fox woman with fox ears, top view, HDR lighting"}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos_quality": 1.182958257, "prompt": "a biomechanical blue raspberry made of metal, top view, realistic style"}
18
+ {"name": "glide_normal_157.jpg", "mos_quality": 1.269550286, "prompt": "spaceship flying over a strange planet, hyper detail"}
19
+ {"name": "DALLE2_normal_268.jpg", "mos_quality": 1.351025623, "prompt": "spaceport on a vast desert planet with ships taking off, warm color, blurred detail, abstract style"}
20
+ {"name": "glide_normal_142.jpg", "mos_quality": 1.391281461, "prompt": "a biomechanical passion fruit flower, top view"}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos_quality": 1.445015122, "prompt": "a river in a forest"}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos_quality": 1.48681785, "prompt": "a giant rock floating in the air, abstract style"}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos_quality": 1.540771109, "prompt": "cute great old ones sitting in a bar, warm color"}
24
+ {"name": "glide_normal_066.jpg", "mos_quality": 1.619473192, "prompt": "a pizza with chocolate on it, sci-fi style"}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos_quality": 1.711133213, "prompt": "a heavily bloodied horrified pretty young woman, warm color, hyper detail"}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos_quality": 1.776898668, "prompt": "epic vessel cage armor of interdimensional adventurer, warm color, elevation view, sci-fi style"}
27
+ {"name": "sd1.5_normal_068.jpg", "mos_quality": 1.894194533, "prompt": "yog sothoth chef in a kitchen, abstract style"}
28
+ {"name": "sd1.5_normal_186.jpg", "mos_quality": 1.916425889, "prompt": "a portrait of girl alchemist in blue dress, blurred detail, sci-fi style"}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos_quality": 1.971039124, "prompt": "a portrait of girl bard in red dress, cold color"}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos_quality": 2.004546739, "prompt": "a cosmic universe"}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos_quality": 2.03716536, "prompt": "unique epic pink space elf knight adventurer, long-shot, anime style"}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos_quality": 2.075576292, "prompt": "steampunk squid inside a glass jar buried in sand, cold color, HDR lighting"}
33
+ {"name": "glide_normal_108.jpg", "mos_quality": 2.138862877, "prompt": "portrait of a dancing eagle woman, abstract style"}
34
+ {"name": "xl2.2_normal_171.jpg", "mos_quality": 2.18011346, "prompt": "grumpy disney princess sitting in a cave, cold color"}
35
+ {"name": "sd1.5_normal_080.jpg", "mos_quality": 2.210104633, "prompt": "painted portrait of goblin man, anime style"}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos_quality": 2.293494507, "prompt": "red and blue armor"}
37
+ {"name": "sd1.5_normal_216.jpg", "mos_quality": 2.326531297, "prompt": "elegant oval mirror and toucan with reflection, blurred detail, sci-fi style"}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos_quality": 2.36946733, "prompt": "anthropomorphic thresher shark in knight armor dropping his sword, long-shot, soft lighting, baroque style"}
39
+ {"name": "DALLE2_normal_223.jpg", "mos_quality": 2.40326321, "prompt": "small group of nomads staying at ancient ruins, cold color, elevation view"}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos_quality": 2.442957962, "prompt": "a girl with rainbow in white shirt , top view"}
41
+ {"name": "DALLE2_normal_018.jpg", "mos_quality": 2.476222723, "prompt": "man hating his printer"}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos_quality": 2.491680335, "prompt": "the drowned and the saved"}
43
+ {"name": "xl2.2_normal_178.jpg", "mos_quality": 2.518413241, "prompt": "a car crawling with human hands and feet, soft lighting"}
44
+ {"name": "sd1.5_normal_101.jpg", "mos_quality": 2.542752246, "prompt": "a man playing an invisible cello, sci-fi style"}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos_quality": 2.560764083, "prompt": "ocean of canvas that catches fire, anime style"}
46
+ {"name": "xl2.2_normal_221.jpg", "mos_quality": 2.580492981, "prompt": "goose being zipped - up by man in orange shirt, warm color, elevation view"}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos_quality": 2.610261314, "prompt": "a girl with rainbow in white shirt , top view"}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos_quality": 2.64254653, "prompt": "house of the dragon"}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos_quality": 2.660597966, "prompt": "an adventure party resting in a tavern, blurred detail"}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos_quality": 2.674859949, "prompt": "alien planet landscape made out of mushrooms, warm color, anime style"}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos_quality": 2.692443672, "prompt": "a female elven warrior wearing platinum breastplate, close-up, hyper detail"}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos_quality": 2.731010208, "prompt": "house of the dragon"}
53
+ {"name": "xl2.2_normal_101.jpg", "mos_quality": 2.747600946, "prompt": "a man playing an invisible cello, sci-fi style"}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos_quality": 2.782759734, "prompt": "two women working in a recording studio, hyper detail"}
55
+ {"name": "xl2.2_normal_103.jpg", "mos_quality": 2.803217798, "prompt": "a giant rock floating in the air, abstract style"}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos_quality": 2.841733922, "prompt": "rat portrait as a warrior"}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos_quality": 2.869008944, "prompt": "portrait of a philippine character in a scenic environment, top view, hyper detail, sci-fi style"}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos_quality": 2.886258786, "prompt": "portrait of beautiful woman with magical nebula hair, long-shot, soft lighting"}
59
+ {"name": "DALLE2_normal_218.jpg", "mos_quality": 2.908664621, "prompt": "a masonic illuminati waiting room with a couch, soft lighting, abstract style"}
60
+ {"name": "sd1.5_normal_003.jpg", "mos_quality": 2.92075847, "prompt": "a cosmic universe"}
61
+ {"name": "xl2.2_normal_160.jpg", "mos_quality": 2.941741401, "prompt": "cute soul ghost in infinity mirror room, warm color"}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos_quality": 2.966953132, "prompt": "2 friends partying and are facing the camera, close-up, baroque style"}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos_quality": 2.975194143, "prompt": "portrait of a philippine character in a scenic environment, top view, hyper detail, sci-fi style"}
64
+ {"name": "sd1.5_normal_129.jpg", "mos_quality": 3.001476926, "prompt": "portrait of a beautiful young woman, HDR lighting"}
65
+ {"name": "xl2.2_normal_164.jpg", "mos_quality": 3.033265998, "prompt": "a pig sitting in a chair smoking a pipe, close-up"}
66
+ {"name": "sd1.5_normal_155.jpg", "mos_quality": 3.062007692, "prompt": "an auto rickshaw driving through paris, long-shot"}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos_quality": 3.091620808, "prompt": "a small garden buzzing with bees, anime style"}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos_quality": 3.108253189, "prompt": "interior of cosmic highway created by the gods, cold color, top view"}
69
+ {"name": "xl2.2_normal_100.jpg", "mos_quality": 3.135881857, "prompt": "a small garden buzzing with bees, anime style"}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos_quality": 3.150815738, "prompt": "a cyborg jellyfish swimming in a vast ocean, close-up, baroque style"}
71
+ {"name": "DALLE2_normal_212.jpg", "mos_quality": 3.169097903, "prompt": "a glass vase of pink and white dahlia flowers, top view, realistic style"}
72
+ {"name": "midjourney_normal_032.jpg", "mos_quality": 3.195617381, "prompt": "an emo portrait painting"}
73
+ {"name": "xl2.2_normal_083.jpg", "mos_quality": 3.214375205, "prompt": "eiffel tower drenched in blood, abstract style"}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos_quality": 3.231255627, "prompt": "a frog wearing police cap"}
75
+ {"name": "xl2.2_normal_182.jpg", "mos_quality": 3.270286787, "prompt": "a female warrior in charming phenix armor, top view, realistic style"}
76
+ {"name": "midjourney_normal_185.jpg", "mos_quality": 3.30238721, "prompt": "die cut sticker of chibi cute golf player , long-shot, anime style"}
77
+ {"name": "midjourney_normal_053.jpg", "mos_quality": 3.307841757, "prompt": "castle from howl's sticker"}
78
+ {"name": "xl2.2_normal_033.jpg", "mos_quality": 3.344956193, "prompt": "the pope had a rock band"}
79
+ {"name": "sd1.5_normal_293.jpg", "mos_quality": 3.374329815, "prompt": "futuristic robot alien invasion award winning pixar movie poster , close-up, HDR lighting, abstract style"}
80
+ {"name": "midjourney_normal_179.jpg", "mos_quality": 3.387959109, "prompt": "underwater photography of the rough ocean, HDR lighting"}
81
+ {"name": "xl2.2_normal_121.jpg", "mos_quality": 3.424268421, "prompt": "cute green tabby cat made of leaves, cold color"}
82
+ {"name": "midjourney_normal_200.jpg", "mos_quality": 3.455503573, "prompt": "alien planet landscape made out of mushrooms, warm color, anime style"}
83
+ {"name": "xl2.2_normal_114.jpg", "mos_quality": 3.472753415, "prompt": "donut glazed with white chocolate, baroque style"}
84
+ {"name": "xl2.2_normal_211.jpg", "mos_quality": 3.502054974, "prompt": "a woman in a trench coat looking out a window, cold color, sci-fi style"}
85
+ {"name": "xl2.2_normal_014.jpg", "mos_quality": 3.516316957, "prompt": "a small leopard gecko"}
86
+ {"name": "sd1.5_lowcorr_173.jpg", "mos_quality": 3.544604966, "prompt": "ancient japanese fantasy garden at night, elevation view"}
87
+ {"name": "sd1.5_lowcorr_099.jpg", "mos_quality": 3.576252467, "prompt": "brain floating out of a portrait, baroque style"}
88
+ {"name": "DALLE2_normal_284.jpg", "mos_quality": 3.593502309, "prompt": "portrait of beautiful female supermodel wearing olive dress, top view, soft lighting, baroque style"}
89
+ {"name": "xl2.2_normal_274.jpg", "mos_quality": 3.628001993, "prompt": "angled photograph of an abandoned train cart during dusk, cold color, soft lighting, baroque style"}
90
+ {"name": "sd1.5_normal_231.jpg", "mos_quality": 3.64048937, "prompt": "a dramatic photo of a lion made of cotton candy, cold color, hyper detail"}
91
+ {"name": "sd1.5_lowstep_242.jpg", "mos_quality": 3.671121754, "prompt": "a living room with a black and white chevron floor, elevation view, blurred detail"}
92
+ {"name": "sd1.5_highcorr_002.jpg", "mos_quality": 3.688435461, "prompt": "man lost in space"}
93
+ {"name": "sd1.5_highcorr_121.jpg", "mos_quality": 3.744508689, "prompt": "cute green tabby cat made of leaves, cold color"}
94
+ {"name": "midjourney_normal_005.jpg", "mos_quality": 3.773032655, "prompt": "house of the dragon"}
95
+ {"name": "xl2.2_normal_047.jpg", "mos_quality": 3.800500414, "prompt": "stalin tapdancing on stage"}
96
+ {"name": "xl2.2_normal_129.jpg", "mos_quality": 3.825753384, "prompt": "portrait of a beautiful young woman, HDR lighting"}
97
+ {"name": "sd1.5_normal_139.jpg", "mos_quality": 3.897509797, "prompt": "digital painting of a lake at sunset, HDR lighting"}
98
+ {"name": "midjourney_normal_170.jpg", "mos_quality": 3.923239841, "prompt": "portrait of butterflies swarming flowers, warm color"}
99
+ {"name": "sd1.5_normal_009.jpg", "mos_quality": 3.986962403, "prompt": "girl from fight club"}
100
+ {"name": "xl2.2_normal_144.jpg", "mos_quality": 4.106196029, "prompt": "pendant of a silver starfish necklace, close-up"}
assets/quant-comparison-grid.png ADDED

Git LFS Details

  • SHA256: 664111f7b4b6cc5d49c4a50ea337a1997b281436d0954b19531ed6ba4e6f8f3f
  • Pointer size: 131 Bytes
  • Size of remote file: 280 kB
assets/quant-comparison-overlay.png ADDED

Git LFS Details

  • SHA256: 51129cac56bc90c13f0a421ba75694ac04834871cf0ef97fe772bd389f4cf2c6
  • Pointer size: 131 Bytes
  • Size of remote file: 189 kB
assets/quant-metrics-bar.png ADDED
bench-BF16.jsonl ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos": 0.0, "score": 1.0, "raw": "1\nThe image is completely black, indicating no discernible content or details, which is the lowest possible quality on the given scale.", "elapsed_s": 0.5378141403198242, "attempts": 1}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos": 0.195283431, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and a lack of discernible details, making it difficult to identify any specific content or features.", "elapsed_s": 0.7423593997955322, "attempts": 1}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos": 0.339513003, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any clear details or content. The lack of focus and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.7139835357666016, "attempts": 1}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos": 0.550374317, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or content. The lack of clarity and sharpness indicates a very low perceptual quality.", "elapsed_s": 0.6813027858734131, "attempts": 1}
5
+ {"name": "glide_normal_225.jpg", "mos": 0.613396089, "score": 1.0, "raw": "1\nThe image is heavily degraded with significant noise, compression artifacts, and blur, making it difficult to discern any clear details or content.", "elapsed_s": 0.7427527904510498, "attempts": 1}
6
+ {"name": "glide_normal_094.jpg", "mos": 0.678182301, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and a lack of sharpness, making it difficult to discern details.", "elapsed_s": 0.7812776565551758, "attempts": 1}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos": 0.739960598, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or objects. The lack of sharpness and clarity suggests a low perceptual quality.", "elapsed_s": 0.8374404907226562, "attempts": 1}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos": 0.780698266, "score": 1.0, "raw": "1\nThe image is heavily distorted, with a warped and fragmented appearance, making it difficult to discern any clear details or content. The lack of sharpness and the presence of artifacts suggest a very low perceptual quality.", "elapsed_s": 1.0535986423492432, "attempts": 1}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos": 0.831522735, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any clear details or features. The lack of sharpness and the presence of motion blur suggest a very low perceptual quality.", "elapsed_s": 0.8330812454223633, "attempts": 1}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos": 0.875752826, "score": 2.0, "raw": "2\n\nThe image appears to have a moderate level of noise and lacks sharpness, which affects its overall quality. The details are not very clear, and there seems to be some distortion or blurring, which is not ideal for a high-quality image.", "elapsed_s": 1.0161564350128174, "attempts": 1}
11
+ {"name": "glide_normal_280.jpg", "mos": 0.902526954, "score": 2.0, "raw": "2. The image is somewhat blurry and lacks detail, which is typical for low-resolution or compressed images. The lack of sharpness and detail suggests it is not of high quality.", "elapsed_s": 0.7449784278869629, "attempts": 1}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos": 0.940601322, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 1.11928391456604, "attempts": 1}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos": 1.006207915, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or content. The overall quality is severely degraded.", "elapsed_s": 0.6015496253967285, "attempts": 1}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos": 1.038703499, "score": 3.0, "raw": "3\n\nThe image has a somewhat abstract and painterly quality, which might be intentional, but it also appears to have some level of noise or distortion, particularly in the background and the details of the figure. The overall clarity and sharpness are not high, which is why it doesn't reach a 5.", "elapsed_s": 1.1947293281555176, "attempts": 1}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos": 1.075025374, "score": 2.0, "raw": "2\n\nThe image appears to have a high level of distortion and lacks clarity, which is evident from the unnatural shapes and the lack of distinct features. The colors are vibrant but the overall structure is not coherent, indicating a low perceptual quality.", "elapsed_s": 0.8308234214782715, "attempts": 1}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos": 1.126728573, "score": 2.0, "raw": "2. The image appears to have a high level of noise and blurriness, which significantly degrades the overall quality. The details are not clear, and the texture is not well-defined, indicating a lower perceptual quality.", "elapsed_s": 1.1529192924499512, "attempts": 1}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos": 1.182958257, "score": 1.0, "raw": "1\nThe image is heavily distorted, with a blurred and indistinct face, and the overall quality is very low.", "elapsed_s": 0.6135444641113281, "attempts": 1}
18
+ {"name": "glide_normal_157.jpg", "mos": 1.269550286, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, but there are some visible artifacts and a lack of sharpness, which prevents it from being rated higher. The colors are somewhat muted, and the overall composition is somewhat abstract, which might be intentional but still affects the perceived quality.", "elapsed_s": 1.0694899559020996, "attempts": 1}
19
+ {"name": "DALLE2_normal_268.jpg", "mos": 1.351025623, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern specific details or features, which significantly degrades its perceptual quality.", "elapsed_s": 0.5841014385223389, "attempts": 1}
20
+ {"name": "glide_normal_142.jpg", "mos": 1.391281461, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with vibrant colors and no visible noise or compression artifacts. The details of the flower's structure are well-defined, indicating a high perceptual quality.", "elapsed_s": 0.8374447822570801, "attempts": 1}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos": 1.445015122, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern details, and the overall quality is very low.", "elapsed_s": 0.879767894744873, "attempts": 1}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos": 1.48681785, "score": 2.0, "raw": "2\n\nThe image is blurry and lacks sharpness, which affects its overall quality. The details are not clear, and the edges are not well-defined, indicating a lower perceptual quality.", "elapsed_s": 0.8986907005310059, "attempts": 1}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos": 1.540771109, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a warm, painterly quality, which gives it a certain charm but also indicates it is not sharp or clean. There are no obvious compression artifacts or noise, but the lack of sharpness and detail brings it down from a higher rating.", "elapsed_s": 1.5959422588348389, "attempts": 1}
24
+ {"name": "glide_normal_066.jpg", "mos": 1.619473192, "score": 3.0, "raw": "3\n\nThe image is somewhat blurry and the details are not very sharp, which affects the overall quality. However, the colors are vibrant and the subject is recognizable, which slightly elevates the rating above a 1.", "elapsed_s": 0.9487671852111816, "attempts": 1}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos": 1.711133213, "score": 3.0, "raw": "3\n\nThe image has a high level of detail and clarity, with a clean and sharp appearance. However, the subject matter is highly stylized and surreal, which may not be indicative of the image's technical quality. The color palette and composition are well-executed, but the subject's expression and the blood splatter effect add a layer of artistic interpretation that can be subjective. The image does not exhibit any visible noise, compression artifacts, or blur, which are common issues that", "elapsed_s": 1.417612075805664, "attempts": 1}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos": 1.776898668, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of noise and lacks sharpness, which slightly degrades its quality. However, the overall structure and details are still discernible, indicating it is not severely degraded.", "elapsed_s": 1.333960771560669, "attempts": 1}
27
+ {"name": "sd1.5_normal_068.jpg", "mos": 1.894194533, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and the edges are not perfectly sharp, which slightly reduces its quality from a perfect 5.", "elapsed_s": 0.9240434169769287, "attempts": 1}
28
+ {"name": "sd1.5_normal_186.jpg", "mos": 1.916425889, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some softness in the edges and a slightly blurred background, which is common in digital art. There are no obvious signs of heavy noise, compression artifacts, or blurriness that would significantly degrade the quality. However, the lack of sharpness and the presence of some softness suggest it is not in the highest quality category.", "elapsed_s": 1.4996774196624756, "attempts": 1}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos": 1.971039124, "score": 3.0, "raw": "3\n\nThe image is somewhat blurry and lacks sharpness, which affects its overall quality. The details are not very clear, and there is a noticeable lack of focus, which is why it doesn't reach the higher quality rating.", "elapsed_s": 0.9092662334442139, "attempts": 1}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos": 2.004546739, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of color saturation and clarity. The stars and nebulae are well-defined, and there are no visible artifacts or blurriness. However, the image appears to be a composite or a heavily processed photograph, which might slightly reduce the score.", "elapsed_s": 1.3390519618988037, "attempts": 1}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos": 2.03716536, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with no visible noise or compression artifacts. The details in the character's outfit and the weapon are well-defined, indicating a high-quality render.", "elapsed_s": 1.0007736682891846, "attempts": 1}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos": 2.075576292, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a dreamy quality, which might be intentional for artistic effect. However, the lack of sharpness and the presence of some noise suggest it is not of high quality. The lighting and color are well-balanced, but the overall clarity is not as high as it could be.", "elapsed_s": 1.1276960372924805, "attempts": 1}
33
+ {"name": "glide_normal_108.jpg", "mos": 2.138862877, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the feathers and the bird's features. The background is a gradient of yellow, which does not detract from the main subject. There are no visible artifacts or compression issues, indicating a high perceptual quality.", "elapsed_s": 0.9885468482971191, "attempts": 1}
34
+ {"name": "xl2.2_normal_171.jpg", "mos": 2.18011346, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with vibrant colors and smooth lines. However, there is a slight softness in the edges, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.860492467880249, "attempts": 1}
35
+ {"name": "sd1.5_normal_080.jpg", "mos": 2.210104633, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with no visible noise or compression artifacts. The details in the character's face and hair are well-defined, indicating a high-quality image.", "elapsed_s": 0.8087899684906006, "attempts": 1}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos": 2.293494507, "score": 2.0, "raw": "2. The image is blurry, which affects the overall clarity and detail, but the colors and shapes are still distinguishable. There is some noise present, which slightly degrades the quality.", "elapsed_s": 1.1175949573516846, "attempts": 1}
37
+ {"name": "sd1.5_normal_216.jpg", "mos": 2.326531297, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details of the mirror frame and the reflection are sharp, indicating a high-quality image.", "elapsed_s": 1.0192241668701172, "attempts": 1}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos": 2.36946733, "score": 3.0, "raw": "3\n\nThe image has a moderate level of blur and lacks sharpness, which affects the overall quality. The lighting and color are somewhat muted, and there is a lack of fine detail that would be present in a high-quality image. However, the subject is still recognizable, and the composition is clear enough to understand the scene.", "elapsed_s": 1.5071892738342285, "attempts": 1}
39
+ {"name": "DALLE2_normal_223.jpg", "mos": 2.40326321, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus and a somewhat muted color palette, which gives it a painterly quality. While the details are not sharp, the overall composition and the interplay of light and shadow are well-executed, suggesting a moderate level of perceptual quality.", "elapsed_s": 0.9562695026397705, "attempts": 1}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos": 2.442957962, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus, which is intentional for artistic effect, but it does result in a lack of sharpness and detail. The colors are vibrant, but the overall clarity is compromised, making it difficult to discern fine details. The lighting is even, and there are no obvious compression artifacts or noise, but the soft focus detracts from the image's quality.", "elapsed_s": 1.1236169338226318, "attempts": 1}
41
+ {"name": "DALLE2_normal_018.jpg", "mos": 2.476222723, "score": 3.0, "raw": "3\n\nThe image is clear and the details are visible, but there is a slight blur and the lighting is not optimal, which slightly reduces the quality.", "elapsed_s": 0.9269852638244629, "attempts": 1}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos": 2.491680335, "score": 3.0, "raw": "3 The image is somewhat clear but has a slightly grainy texture and the text appears to be distorted, which affects the overall quality.", "elapsed_s": 0.7304539680480957, "attempts": 1}
43
+ {"name": "xl2.2_normal_178.jpg", "mos": 2.518413241, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a clean and sharp appearance. The lighting and colors are well-balanced, and there are no visible artifacts or distortions. The composition is also well-executed, making it a high-quality image.", "elapsed_s": 1.0527687072753906, "attempts": 1}
44
+ {"name": "sd1.5_normal_101.jpg", "mos": 2.542752246, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details in the person's skin texture and clothing are sharp, indicating a high-quality image.", "elapsed_s": 1.2799794673919678, "attempts": 1}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos": 2.560764083, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with no visible noise, compression artifacts, or blur. The colors are well-defined, and the details in the clouds and waves are sharp, indicating a high perceptual quality.", "elapsed_s": 1.109499216079712, "attempts": 1}
46
+ {"name": "xl2.2_normal_221.jpg", "mos": 2.580492981, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail on the subject and the background. The colors are vibrant, and there are no visible artifacts or blurriness. However, the image appears to be slightly compressed, as indicated by the subtle loss of detail in the feathers of the goose and the texture of the man's clothing. This slight compression reduces the image quality to a 4.", "elapsed_s": 1.4120209217071533, "attempts": 1}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos": 2.610261314, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of distortion, with the person's body and the object they are holding appearing to be unnaturally deformed and stretched. This suggests that the image may have been manipulated or is of low quality, resulting in a perceptual quality of 3.", "elapsed_s": 1.4152686595916748, "attempts": 1}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos": 2.64254653, "score": 3.0, "raw": "3\n\nThe image has a moderate level of detail and clarity, with some areas appearing slightly blurred or distorted, particularly around the edges of the central window-like structure. The colors are vibrant, but the overall sharpness and definition are not at the highest quality.", "elapsed_s": 1.096146583557129, "attempts": 1}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos": 2.660597966, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with good lighting and color saturation. The details in the clothing and facial features are sharp, and there are no visible artifacts or compression issues. However, the image appears to be a painting, which may not be considered as high quality as a photograph due to the artistic style and potential for intentional brushstrokes or artistic effects.", "elapsed_s": 1.2586476802825928, "attempts": 1}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos": 2.674859949, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there are some minor artifacts and a slightly grainy texture that detract from its overall quality. The composition is interesting, but the image could benefit from being cleaner and sharper.", "elapsed_s": 1.2233695983886719, "attempts": 1}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos": 2.692443672, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean details, sharp edges, and no visible noise or compression artifacts. The lighting is well-balanced, and the textures on the armor are rendered with good fidelity.", "elapsed_s": 1.2354979515075684, "attempts": 1}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos": 2.731010208, "score": 4.0, "raw": "4\n\nThe image is visually striking with a clear and vibrant depiction of a dragon silhouette against a fiery background. The colors are well-defined, and the overall composition is sharp, with no visible noise or compression artifacts. The contrast between the dark dragon and the bright background enhances the visual impact, making it a high-quality image.", "elapsed_s": 1.2937121391296387, "attempts": 1}
53
+ {"name": "xl2.2_normal_101.jpg", "mos": 2.747600946, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with a high level of detail visible in the subject's clothing and the instrument. The lighting and composition are effective, creating a dramatic and professional appearance. However, there is a slight softness to the image that prevents it from being a perfect 5, but it is still of high perceptual quality.", "elapsed_s": 1.5908923149108887, "attempts": 1}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos": 2.782759734, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible on the equipment and the individuals. The colors are vibrant, and there are no noticeable artifacts or compression issues. However, the image could be slightly sharper, which would elevate the quality to a perfect 5.", "elapsed_s": 1.1506929397583008, "attempts": 1}
55
+ {"name": "xl2.2_normal_103.jpg", "mos": 2.803217798, "score": 4.0, "raw": "4\n\nThe image is relatively clean and sharp, with a clear distinction between the mountain, the water, and the sky. The lighting is even, and there are no visible compression artifacts or noise. However, the image appears to be a digital creation or a highly stylized photograph, which might not be considered \"high quality\" in the traditional sense of a photograph taken with a high-end camera.", "elapsed_s": 1.531404972076416, "attempts": 1}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos": 2.841733922, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good focus on the subject. The lighting is even, and there are no visible artifacts or noise. The background is slightly blurred, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 1.025317668914795, "attempts": 1}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos": 2.869008944, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a painterly quality, which gives it a certain artistic appeal but also results in a lack of sharpness and detail that would be expected in a high-quality image. The colors are muted and the overall composition is somewhat abstract, which might be intentional but contributes to the lower quality rating.", "elapsed_s": 1.1776604652404785, "attempts": 1}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos": 2.886258786, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with smooth gradients and a lack of visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a visually appealing and high-quality appearance.", "elapsed_s": 0.9827029705047607, "attempts": 1}
59
+ {"name": "DALLE2_normal_218.jpg", "mos": 2.908664621, "score": 3.0, "raw": "3\n\nThe image has a moderate level of noise and graininess, which slightly degrades the overall quality. The lighting is uneven, and the details are not very sharp, but the composition and elements are discernible.", "elapsed_s": 1.2835943698883057, "attempts": 1}
60
+ {"name": "sd1.5_normal_003.jpg", "mos": 2.92075847, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of clarity and sharpness. The colors are vivid, and the structure of the galaxy is well-defined, indicating a high-quality image with minimal noise or artifacts.", "elapsed_s": 0.9465689659118652, "attempts": 1}
61
+ {"name": "xl2.2_normal_160.jpg", "mos": 2.941741401, "score": 3.0, "raw": "3\n\nThe image has a clear and sharp appearance with no visible noise or compression artifacts. However, the lighting and reflections create a somewhat surreal and artificial look, which might be considered a stylistic choice rather than a flaw in quality. The overall composition is well-defined, but the stylized nature of the image might not align with the expectations of high-quality photography in a traditional sense.", "elapsed_s": 1.399031639099121, "attempts": 1}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos": 2.966953132, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and the colors are vibrant, which is a positive aspect.", "elapsed_s": 1.077533483505249, "attempts": 1}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos": 2.975194143, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The character and background are well-defined, and there are no visible artifacts or blurriness. The lighting and shading are also well-executed, contributing to the overall high-quality appearance.", "elapsed_s": 1.0449886322021484, "attempts": 1}
64
+ {"name": "sd1.5_normal_129.jpg", "mos": 3.001476926, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with smooth skin texture and natural lighting. The details in the hair and clothing are visible, and there are no noticeable artifacts or compression issues. The overall quality is high, but it could be slightly sharper to achieve a perfect 5.", "elapsed_s": 1.1693215370178223, "attempts": 1}
65
+ {"name": "xl2.2_normal_164.jpg", "mos": 3.033265998, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with good color saturation and sharpness. However, there is a slight softness in the edges, which prevents it from being rated as a perfect 5.", "elapsed_s": 1.1084792613983154, "attempts": 1}
66
+ {"name": "sd1.5_normal_155.jpg", "mos": 3.062007692, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible in the vehicle and the surrounding environment. The colors are vibrant, and there is no noticeable noise or compression artifacts. The sharpness is good, and the overall composition is pleasing.", "elapsed_s": 1.0297067165374756, "attempts": 1}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos": 3.091620808, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with well-defined colors and details. The trees, flowers, and the beehive are all sharp and distinct, indicating a high-quality image. However, there is a slight softness to the edges, which might be due to the artistic style rather than degradation.", "elapsed_s": 1.286407232284546, "attempts": 1}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos": 3.108253189, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a smooth gradient and no visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a visually appealing and high-quality image.", "elapsed_s": 0.9508435726165771, "attempts": 1}
69
+ {"name": "xl2.2_normal_100.jpg", "mos": 3.135881857, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting is well-balanced, and there are no visible artifacts or compression issues. The character and background elements are rendered with a high level of detail, contributing to the overall high perceptual quality.", "elapsed_s": 1.1296720504760742, "attempts": 1}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos": 3.150815738, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and a lack of visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a high-quality visual experience.", "elapsed_s": 1.1764352321624756, "attempts": 1}
71
+ {"name": "DALLE2_normal_212.jpg", "mos": 3.169097903, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with the flowers in focus and the background providing a clean, neutral backdrop. There are no visible noise, compression artifacts, or blur that would detract from the overall quality.", "elapsed_s": 1.2976183891296387, "attempts": 1}
72
+ {"name": "midjourney_normal_032.jpg", "mos": 3.195617381, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with smooth gradients and a well-defined subject. The lighting and color are well-balanced, and there are no visible artifacts or distortions. However, the background is somewhat blurred, which might be intentional to emphasize the subject, but it slightly reduces the overall sharpness.", "elapsed_s": 1.339012622833252, "attempts": 1}
73
+ {"name": "xl2.2_normal_083.jpg", "mos": 3.214375205, "score": 3.0, "raw": "3\n\nThe image has a stylized, artistic quality with a clear focus on the Eiffel Tower. The red splatter effect adds a dramatic element, but the overall image is not blurry or noisy. However, the artistic style and the use of color might be considered a form of degradation in terms of realism, which is why it doesn't quite reach a 5.", "elapsed_s": 1.1578137874603271, "attempts": 1}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos": 3.231255627, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail on the frog and the hat. The background is slightly blurred, which helps to emphasize the subject. There are no visible noise or compression artifacts, and the colors are vibrant. The lighting is even, and the overall composition is pleasing.", "elapsed_s": 1.0571439266204834, "attempts": 1}
75
+ {"name": "xl2.2_normal_182.jpg", "mos": 3.270286787, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with vibrant colors and smooth lines. There are no visible artifacts or blurriness, indicating a high-quality image.", "elapsed_s": 0.9260256290435791, "attempts": 1}
76
+ {"name": "midjourney_normal_185.jpg", "mos": 3.30238721, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with no visible noise, compression artifacts, or blur. The lines are sharp, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 1.0085296630859375, "attempts": 1}
77
+ {"name": "xl2.2_normal_033.jpg", "mos": 3.344956193, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail and sharpness. The subject is in focus, and there are no visible artifacts or compression issues. The lighting is even, and the colors are natural, contributing to a high-quality appearance.", "elapsed_s": 1.2764842510223389, "attempts": 1}
78
+ {"name": "sd1.5_normal_293.jpg", "mos": 3.374329815, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting and shading are well-executed, contributing to a visually appealing and realistic appearance. There are no visible artifacts or compression issues that would detract from the overall quality.", "elapsed_s": 1.2863125801086426, "attempts": 1}
79
+ {"name": "midjourney_normal_179.jpg", "mos": 3.387959109, "score": 4.0, "raw": "4\n\nThe image is quite clear and sharp, with good lighting and color saturation. The underwater scene is well-composed, and the details of the coral and the water's texture are visible. However, there is a slight haze or blur, which might be due to the underwater environment, but it doesn't significantly degrade the overall quality.", "elapsed_s": 1.3167164325714111, "attempts": 1}
80
+ {"name": "xl2.2_normal_121.jpg", "mos": 3.424268421, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with vibrant colors and sharp lines. The texture of the fur and the leaves is well-defined, and there are no visible artifacts or blurriness. However, the image appears to be a digital illustration rather than a photograph, which might slightly lower the quality compared to a high-resolution photo.", "elapsed_s": 1.3010175228118896, "attempts": 1}
81
+ {"name": "midjourney_normal_200.jpg", "mos": 3.455503573, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a clear and sharp depiction of the landscape. The colors are rich and the lines are well-defined, indicating a high-quality digital illustration. However, there are no visible artifacts or noise, which slightly reduces the score to 4.", "elapsed_s": 1.2782044410705566, "attempts": 1}
82
+ {"name": "xl2.2_normal_114.jpg", "mos": 3.472753415, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good focus on the donut and the small pastry. The details are sharp, and there are no visible artifacts or noise. The composition is also pleasing, with the donut and pastry placed attractively on the plate.", "elapsed_s": 1.0270509719848633, "attempts": 1}
83
+ {"name": "xl2.2_normal_211.jpg", "mos": 3.502054974, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with a good level of detail visible in the subject's features and clothing. The colors are natural and the composition is pleasing, indicating a high-quality photograph. However, there is a slight softness to the image, which prevents it from being a perfect 5.", "elapsed_s": 1.3710412979125977, "attempts": 1}
84
+ {"name": "xl2.2_normal_014.jpg", "mos": 3.516316957, "score": 4.0, "raw": "4\n\nThe image is very clear and sharp, with vibrant colors and fine details visible on the gecko's skin. There are no noticeable artifacts or compression issues, indicating a high-quality image.", "elapsed_s": 0.8849732875823975, "attempts": 1}
85
+ {"name": "sd1.5_lowcorr_173.jpg", "mos": 3.544604966, "score": 4.0, "raw": "4\n\nThe image is clear and well-composed, with good lighting and sharp details in the architecture and garden. The colors are vibrant, and there are no visible artifacts or distortions. The only slight deduction from a perfect score is the presence of a watermark, which is not ideal but does not significantly impact the overall quality.", "elapsed_s": 1.3513097763061523, "attempts": 1}
86
+ {"name": "sd1.5_lowcorr_099.jpg", "mos": 3.576252467, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with no visible noise, compression artifacts, or blur. The texture of the brain is well-defined, and the lighting is even, contributing to a high-quality appearance.", "elapsed_s": 1.0704751014709473, "attempts": 1}
87
+ {"name": "DALLE2_normal_284.jpg", "mos": 3.593502309, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clean and sharp appearance. The details in the subject's face and clothing are well-defined, and there are no visible compression artifacts or noise. The lighting is even, and the colors are vibrant, contributing to the overall high-quality perception of the image.", "elapsed_s": 1.2552835941314697, "attempts": 1}
88
+ {"name": "xl2.2_normal_274.jpg", "mos": 3.628001993, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good color saturation and contrast. The details of the train car and the surrounding environment are well-defined, and there are no visible artifacts or noise. The composition is also well-balanced, contributing to the overall high quality of the image.", "elapsed_s": 1.0092406272888184, "attempts": 1}
89
+ {"name": "sd1.5_normal_231.jpg", "mos": 3.64048937, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lion's fur texture and facial features are well-defined, and there are no visible artifacts or compression issues. The lighting is well-balanced, enhancing the overall perception of the image.", "elapsed_s": 1.1650524139404297, "attempts": 1}
90
+ {"name": "sd1.5_lowstep_242.jpg", "mos": 3.671121754, "score": 4.0, "raw": "4\n\nThe image is clean and sharp with no visible noise or compression artifacts. The details in the furniture and the reflections in the windows are clear, indicating a high-quality render.", "elapsed_s": 1.0395381450653076, "attempts": 1}
91
+ {"name": "sd1.5_highcorr_002.jpg", "mos": 3.688435461, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible noise and artifacts, particularly around the edges of the astronaut and the background. The text is somewhat legible, but the overall quality is not high due to these imperfections.", "elapsed_s": 1.133819818496704, "attempts": 1}
92
+ {"name": "sd1.5_highcorr_121.jpg", "mos": 3.744508689, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the cat's fur and the leaf. The colors are vibrant, and there is no visible noise or compression artifacts. The background is slightly blurred, which helps to emphasize the subject, but it does not detract from the overall quality.", "elapsed_s": 1.4634053707122803, "attempts": 1}
93
+ {"name": "midjourney_normal_005.jpg", "mos": 3.773032655, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and a clean appearance. The textures and colors are well-defined, and there are no visible artifacts or compression issues. The contrast is high, which enhances the visual impact of the image.", "elapsed_s": 0.9857358932495117, "attempts": 1}
94
+ {"name": "xl2.2_normal_047.jpg", "mos": 3.800500414, "score": 3.0, "raw": "3\n\nThe image is clear and well-lit, but it appears to be a black and white photograph, which inherently limits the detail and color accuracy. There are no visible compression artifacts or blurring, and the subject is in focus, making it a decent quality image. However, the lack of color and the potential for graininess in black and white photography prevent it from being rated higher.", "elapsed_s": 1.3519368171691895, "attempts": 1}
95
+ {"name": "xl2.2_normal_129.jpg", "mos": 3.825753384, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and a clean background. The details in the subject's face are well-defined, and there are no visible artifacts or compression issues.", "elapsed_s": 1.2592670917510986, "attempts": 1}
96
+ {"name": "sd1.5_normal_139.jpg", "mos": 3.897509797, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and some noise, which slightly reduces its quality. The composition is visually appealing, but the imperfections prevent it from being a perfect 5.", "elapsed_s": 0.9481606483459473, "attempts": 1}
97
+ {"name": "midjourney_normal_170.jpg", "mos": 3.923239841, "score": null, "raw": "ERROR (after 3 attempts): HTTPError: HTTP Error 503: Service Unavailable", "elapsed_s": 0.0011265277862548828, "attempts": 3}
98
+ {"name": "sd1.5_normal_009.jpg", "mos": 3.986962403, "score": 4.0, "raw": "4. The image is clear and sharp, with good contrast and detail, but there is a slight graininess which might be due to the black and white format or the artistic choice. It does not have any obvious compression artifacts or blurring.", "elapsed_s": 0.48293280601501465, "attempts": 2}
99
+ {"name": "xl2.2_normal_144.jpg", "mos": 4.106196029, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and a well-composed subject. The details in the hair and the texture of the dress are visible, and there are no noticeable artifacts or compression issues. The background is slightly blurred, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 0.38696885108947754, "attempts": 1}
bench-IQ4_XS.jsonl ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos": 0.0, "score": 1.0, "raw": "1. The image is completely black, indicating no discernible content or detail. This suggests severe degradation, with no visual information to assess quality.", "elapsed_s": 0.28559255599975586, "attempts": 1}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos": 0.195283431, "score": 1.0, "raw": "1\nThe image is heavily degraded, with low visibility and a lack of discernible details, indicating severe noise and possible compression artifacts.", "elapsed_s": 0.19593381881713867, "attempts": 1}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos": 0.339513003, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any clear details or content. The lack of focus and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.20679044723510742, "attempts": 1}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos": 0.550374317, "score": 1.0, "raw": "1. The image is heavily blurred and lacks any discernible details, making it impossible to identify the subject or any other elements within the image.", "elapsed_s": 0.1895160675048828, "attempts": 1}
5
+ {"name": "glide_normal_225.jpg", "mos": 0.613396089, "score": 1.0, "raw": "1\nThe image is heavily degraded with significant noise, compression artifacts, and blur, making it difficult to discern any clear content or details.", "elapsed_s": 0.19307708740234375, "attempts": 1}
6
+ {"name": "glide_normal_094.jpg", "mos": 0.678182301, "score": 1.0, "raw": "1. The image is heavily degraded with significant noise, compression artifacts, and blurriness, making it difficult to discern any clear details or content.", "elapsed_s": 0.4917607307434082, "attempts": 1}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos": 0.739960598, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or content. The lack of sharpness and clarity indicates a low perceptual quality.", "elapsed_s": 0.4141979217529297, "attempts": 1}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos": 0.780698266, "score": 1.0, "raw": "1\nThe image is heavily distorted, with severe blurring and a lack of recognizable features, making it difficult to discern any details or content.", "elapsed_s": 0.42899584770202637, "attempts": 1}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos": 0.831522735, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any clear details or content. The lack of focus and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.4775674343109131, "attempts": 1}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos": 0.875752826, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of noise and lacks sharpness, which is why it is not rated as high quality. However, the content is still somewhat discernible, which prevents it from being rated as severely degraded.", "elapsed_s": 0.5155620574951172, "attempts": 1}
11
+ {"name": "glide_normal_280.jpg", "mos": 0.902526954, "score": 3.0, "raw": "3\n\nThe image appears to be a low-resolution or compressed version of a cartoon character, likely a mouse, with some artifacts visible in the lines and shapes. The details are not very sharp, and there is a lack of fine detail that would be present in a high-quality image.", "elapsed_s": 0.4800295829772949, "attempts": 1}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos": 0.940601322, "score": 3.0, "raw": "3 The image appears to have some noise and lacks sharpness, which is common in images with high levels of detail and texture, but it is not severely degraded.", "elapsed_s": 0.5782740116119385, "attempts": 1}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos": 1.006207915, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or content. The overall quality is severely degraded.", "elapsed_s": 0.37872743606567383, "attempts": 1}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos": 1.038703499, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of noise and lacks sharpness, which is typical for images that have been heavily compressed or are of low resolution. The details are not very clear, and there is a noticeable lack of fine texture, which is indicative of a lower perceptual quality.", "elapsed_s": 0.6115562915802002, "attempts": 1}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos": 1.075025374, "score": 1.0, "raw": "1\nThe image is heavily distorted with visible artifacts, blurring, and a lack of clear details, indicating a severely degraded quality.", "elapsed_s": 0.37491345405578613, "attempts": 1}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos": 1.126728573, "score": 3.0, "raw": "3\n\nThe image appears to have some level of distortion or blurring, which affects the clarity and detail, but it is not heavily degraded. The colors and shapes are somewhat recognizable, indicating a moderate level of perceptual quality.", "elapsed_s": 0.4335029125213623, "attempts": 1}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos": 1.182958257, "score": 1.0, "raw": "1\nThe image is heavily degraded with visible noise, compression artifacts, and a lack of sharpness, making it difficult to discern details.", "elapsed_s": 0.346268892288208, "attempts": 1}
18
+ {"name": "glide_normal_157.jpg", "mos": 1.269550286, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible artifacts and a lack of sharpness that prevents it from being rated higher. The colors are somewhat muted, and there is a noticeable lack of fine detail that suggests it may not be of the highest quality.", "elapsed_s": 0.45552897453308105, "attempts": 1}
19
+ {"name": "DALLE2_normal_268.jpg", "mos": 1.351025623, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern specific details or features, which significantly degrades its perceptual quality.", "elapsed_s": 0.35367822647094727, "attempts": 1}
20
+ {"name": "glide_normal_142.jpg", "mos": 1.391281461, "score": 4.0, "raw": "4 The image is of high quality with vibrant colors and clear details, but there is a slight lack of sharpness in the petals, which prevents it from being a perfect 5.", "elapsed_s": 0.38759493827819824, "attempts": 1}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos": 1.445015122, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern details, which significantly degrades its perceptual quality.", "elapsed_s": 0.3250925540924072, "attempts": 1}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos": 1.48681785, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of blur, which affects the overall sharpness and detail. The lighting and colors are somewhat muted, and there is a lack of fine detail that would be expected in a high-quality image. The subject is recognizable, but the lack of clarity detracts from the quality.", "elapsed_s": 0.4828968048095703, "attempts": 1}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos": 1.540771109, "score": 3.0, "raw": "3 The image has a soft, painterly quality with a warm color palette, but the details are not very sharp and there is a slight blur, which prevents it from being rated higher.", "elapsed_s": 0.47900986671447754, "attempts": 1}
24
+ {"name": "glide_normal_066.jpg", "mos": 1.619473192, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which is why it doesn't qualify for a higher rating. However, the main subject is still recognizable, and the colors are vibrant, which is better than a severely degraded image.", "elapsed_s": 0.4822819232940674, "attempts": 1}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos": 1.711133213, "score": 3.0, "raw": "3 The image has a high level of detail and clarity, but the subject matter is highly stylized and surreal, which may affect the perception of quality. The colors are vibrant and the lines are sharp, but the subject's expression and the blood splatter are intentionally exaggerated for artistic effect.", "elapsed_s": 0.4093968868255615, "attempts": 1}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos": 1.776898668, "score": 3.0, "raw": "3 The image appears to have a moderate level of noise and lacks sharpness, which is typical for images that are heavily compressed or have been processed to a high degree of abstraction. The details are not very clear, and the overall quality is not high.", "elapsed_s": 0.3687410354614258, "attempts": 1}
27
+ {"name": "sd1.5_normal_068.jpg", "mos": 1.894194533, "score": 4.0, "raw": "4 The image is vibrant and clear, with no visible noise or compression artifacts. The colors are well-defined and the details are sharp, indicating a high perceptual quality.", "elapsed_s": 0.3957340717315674, "attempts": 1}
28
+ {"name": "sd1.5_normal_186.jpg", "mos": 1.916425889, "score": 3.0, "raw": "3 The image appears to be a digital painting with a stylized, somewhat abstract quality. The colors are vibrant, and the lines are smooth, but there is a lack of fine detail and the image seems to have a soft, painterly texture rather than a crisp, high-resolution look. This gives it a certain charm but also means it doesn't quite reach the level of high quality.", "elapsed_s": 0.5057053565979004, "attempts": 1}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos": 1.971039124, "score": 3.0, "raw": "3 The image is clear and the details of the painting are distinguishable, but there is a slight blur and the lighting is not optimal, which slightly reduces the quality.", "elapsed_s": 0.3278992176055908, "attempts": 1}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos": 2.004546739, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with vibrant colors and clear details, but there is a slight lack of sharpness and some areas that could be more defined, which prevents it from being a perfect 5.", "elapsed_s": 0.39266371726989746, "attempts": 1}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos": 2.03716536, "score": 4.0, "raw": "4 The image is clear and sharp, with no visible noise or compression artifacts. The details in the character's outfit and the weapon are well-defined, indicating a high-quality render.", "elapsed_s": 0.36846256256103516, "attempts": 1}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos": 2.075576292, "score": 3.0, "raw": "3 The image has a soft focus and some noise, which slightly degrades the quality, but the subject is still recognizable and the lighting is well-balanced.", "elapsed_s": 0.3639554977416992, "attempts": 1}
33
+ {"name": "glide_normal_108.jpg", "mos": 2.138862877, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, but there is a slight yellow tint that might be considered a minor imperfection.", "elapsed_s": 0.33739447593688965, "attempts": 1}
34
+ {"name": "xl2.2_normal_171.jpg", "mos": 2.18011346, "score": 4.0, "raw": "4 The image is of high quality with clean lines and vibrant colors, but there is a slight blur around the edges which slightly reduces the score.", "elapsed_s": 0.46308040618896484, "attempts": 1}
35
+ {"name": "sd1.5_normal_080.jpg", "mos": 2.210104633, "score": 4.0, "raw": "4 The image is clear and sharp with no visible noise or compression artifacts. The details in the character's face and hair are well-defined, indicating a high-quality image.", "elapsed_s": 0.4221680164337158, "attempts": 1}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos": 2.293494507, "score": 2.0, "raw": "2. The image is blurry and lacks sharpness, which affects the overall quality. The details are not clear, and the image appears to be out of focus.", "elapsed_s": 0.44404077529907227, "attempts": 1}
37
+ {"name": "sd1.5_normal_216.jpg", "mos": 2.326531297, "score": 4.0, "raw": "4 The image is clear and sharp, with no visible noise or compression artifacts. The details of the mirror frame and the reflection are well-defined.", "elapsed_s": 0.3125462532043457, "attempts": 1}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos": 2.36946733, "score": 3.0, "raw": "3\n\nThe image has a moderate level of blur and lacks sharpness, which affects the overall quality. The lighting and color are somewhat muted, and there is a lack of fine detail that would be expected in a high-quality image.", "elapsed_s": 0.38576698303222656, "attempts": 1}
39
+ {"name": "DALLE2_normal_223.jpg", "mos": 2.40326321, "score": 3.0, "raw": "3 The image appears to be a painting with a soft, somewhat blurry quality, which is typical for artistic renderings. The details are not sharp, and there is a lack of fine detail that would be expected in a high-quality photograph. However, the colors and composition are well-defined, indicating a good perceptual quality for a painting.", "elapsed_s": 0.4806385040283203, "attempts": 1}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos": 2.442957962, "score": 3.0, "raw": "3\n\nThe image appears to have a soft, painterly quality with a lack of sharpness and detail, which is characteristic of a certain artistic style or filter rather than a degradation in quality. The colors are vibrant, and the subject is recognizable, but the overall impression is more artistic than photographic.", "elapsed_s": 0.380840539932251, "attempts": 1}
41
+ {"name": "DALLE2_normal_018.jpg", "mos": 2.476222723, "score": 3.0, "raw": "3 The image is clear and the details are distinguishable, but there is a slight blur and the lighting is not optimal, which slightly reduces the quality.", "elapsed_s": 0.3201899528503418, "attempts": 1}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos": 2.491680335, "score": 3.0, "raw": "3 The image appears to be of moderate quality, with some noise and compression artifacts present, but the details are still discernible.", "elapsed_s": 0.3289756774902344, "attempts": 1}
43
+ {"name": "xl2.2_normal_178.jpg", "mos": 2.518413241, "score": 4.0, "raw": "4 The image is visually striking and the details are clear, but the surreal nature of the composition and the blending of elements (like the road and the sky) might be seen as slightly artificial, which slightly reduces the overall quality.", "elapsed_s": 0.39648914337158203, "attempts": 1}
44
+ {"name": "sd1.5_normal_101.jpg", "mos": 2.542752246, "score": 4.0, "raw": "4 The image is clear and well-lit, with no visible noise or compression artifacts. The subject is in focus, and the details are sharp, indicating a high-quality image.", "elapsed_s": 0.47769689559936523, "attempts": 1}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos": 2.560764083, "score": 4.0, "raw": "4 The image is clear and the colors are vibrant, but there is a slight lack of sharpness and detail that prevents it from being a perfect 5.", "elapsed_s": 0.30452990531921387, "attempts": 1}
46
+ {"name": "xl2.2_normal_221.jpg", "mos": 2.580492981, "score": 4.0, "raw": "4 The image is clear and well-lit, with no visible noise or compression artifacts. The details of the person's clothing and the texture of the goose are sharp, indicating a high-quality image.", "elapsed_s": 0.3054237365722656, "attempts": 1}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos": 2.610261314, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, but there are some artifacts and distortions, particularly around the edges of the subject and the background, which slightly degrade the overall quality.", "elapsed_s": 0.41031312942504883, "attempts": 1}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos": 2.64254653, "score": 3.0, "raw": "3\n\nThe image has a high level of detail and color, but the lines are not perfectly sharp, and there is a slight lack of clarity in the edges of the objects, which prevents it from being rated as a high-quality image.", "elapsed_s": 0.33774375915527344, "attempts": 1}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos": 2.660597966, "score": 4.0, "raw": "4 The image is clear and detailed, with good lighting and color, but there is a slight graininess that suggests it might be a painting rather than a photograph, which is common for older artworks.", "elapsed_s": 0.338900089263916, "attempts": 1}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos": 2.674859949, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of visual complexity and a clear, sharp focus on the subject matter. The colors are rich and the lines are well-defined, indicating a high-quality digital illustration. However, the image is not completely free of noise or artifacts, which slightly reduces its score to 4.", "elapsed_s": 0.42435479164123535, "attempts": 1}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos": 2.692443672, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, though there is a slight lack of depth and texture that might be due to the digital nature of the character model. The lighting is well-balanced, and the character's features are rendered with good clarity.", "elapsed_s": 0.42546510696411133, "attempts": 1}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos": 2.731010208, "score": 4.0, "raw": "4 The image is visually striking and the dragon is well-defined with smooth gradients and a clear circular frame. However, the edges of the dragon and the frame could be slightly sharper, indicating it might not be at the highest quality.", "elapsed_s": 0.4674537181854248, "attempts": 1}
53
+ {"name": "xl2.2_normal_101.jpg", "mos": 2.747600946, "score": 4.0, "raw": "4 The image is clear and sharp, with no visible noise or compression artifacts. The lighting and contrast are well-balanced, and the subject is in focus.", "elapsed_s": 0.3813443183898926, "attempts": 1}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos": 2.782759734, "score": 4.0, "raw": "4 The image is clear and well-lit, with no visible noise or compression artifacts. The details of the equipment and the individuals are sharp, indicating a high quality image.", "elapsed_s": 0.33392953872680664, "attempts": 1}
55
+ {"name": "xl2.2_normal_103.jpg", "mos": 2.803217798, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details in the rock and the water are well-defined, and the lighting is even, contributing to a high-quality appearance.", "elapsed_s": 0.3482694625854492, "attempts": 1}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos": 2.841733922, "score": 4.0, "raw": "4 The image is clear and sharp, with good detail and a clean background, indicating a high quality photograph.", "elapsed_s": 0.30831098556518555, "attempts": 1}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos": 2.869008944, "score": 3.0, "raw": "3 The image has a soft, painterly quality with a focus on the subject's face, but the background is somewhat blurry and lacks detail, which slightly reduces the overall quality.", "elapsed_s": 0.33826136589050293, "attempts": 1}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos": 2.886258786, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with smooth gradients and a lack of noise or compression artifacts. The lighting is well-balanced, and the subject is in focus, making it a high-quality image.", "elapsed_s": 0.39084315299987793, "attempts": 1}
59
+ {"name": "DALLE2_normal_218.jpg", "mos": 2.908664621, "score": 3.0, "raw": "3 The image has a moderate level of noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and the lighting is balanced, making it a decent quality image.", "elapsed_s": 0.36778998374938965, "attempts": 1}
60
+ {"name": "sd1.5_normal_003.jpg", "mos": 2.92075847, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of clarity and a wide range of colors. The spiral structure is well-defined, and the stars are numerous and distinct, indicating a high-quality image. However, the image is not perfect, as there are some minor artifacts and the colors are somewhat saturated, which prevents it from being a perfect 5.", "elapsed_s": 0.4604353904724121, "attempts": 1}
61
+ {"name": "xl2.2_normal_160.jpg", "mos": 2.941741401, "score": 3.0, "raw": "3 The image has a clear subject and a well-defined environment, but the lighting and reflections create some visual noise and artifacts, which slightly degrade the overall quality.", "elapsed_s": 0.3276546001434326, "attempts": 1}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos": 2.966953132, "score": 3.0, "raw": "3 The image appears to have some noise and lacks sharpness, which is why it doesn't qualify for a higher rating.", "elapsed_s": 0.31816697120666504, "attempts": 1}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos": 2.975194143, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The character and background are well-defined, and there are no visible artifacts or noise. The lighting is even, and the overall composition is pleasing to the eye.", "elapsed_s": 0.40598106384277344, "attempts": 1}
64
+ {"name": "sd1.5_normal_129.jpg", "mos": 3.001476926, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, minimal noise, and no visible compression artifacts or blurring.", "elapsed_s": 0.30182886123657227, "attempts": 1}
65
+ {"name": "xl2.2_normal_164.jpg", "mos": 3.033265998, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but there is a slight lack of depth and the lighting could be more natural.", "elapsed_s": 0.3342094421386719, "attempts": 1}
66
+ {"name": "sd1.5_normal_155.jpg", "mos": 3.062007692, "score": 4.0, "raw": "4 The image is clear and well-lit, with good detail in the subject and background. There are no noticeable artifacts or compression issues.", "elapsed_s": 0.33616185188293457, "attempts": 1}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos": 3.091620808, "score": 4.0, "raw": "4 The image is vibrant and clear, with no visible noise or compression artifacts. The details in the trees and flowers are sharp, and the colors are rich and well-defined. However, the text in the bottom left corner appears to be a watermark or signature, which slightly detracts from the overall quality.", "elapsed_s": 0.44425535202026367, "attempts": 1}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos": 3.108253189, "score": 4.0, "raw": "4 The image is visually striking and has a high level of detail, with a clear and sharp focus on the tunnel's perspective. The lighting and color gradient are well-executed, contributing to a high-quality appearance. However, there is a slight presence of noise, which slightly detracts from the perfect score.", "elapsed_s": 0.43143486976623535, "attempts": 1}
69
+ {"name": "xl2.2_normal_100.jpg", "mos": 3.135881857, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting is well-balanced, and there are no visible artifacts or compression issues. The subject is in focus, and the background is appropriately blurred, which enhances the overall quality of the image.", "elapsed_s": 0.3916285037994385, "attempts": 1}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos": 3.150815738, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but the lighting and color grading give it a slightly surreal, painterly quality which might be considered a stylistic choice rather than a degradation.", "elapsed_s": 0.35006284713745117, "attempts": 1}
71
+ {"name": "DALLE2_normal_212.jpg", "mos": 3.169097903, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details of the flowers are well-defined, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.3725707530975342, "attempts": 1}
72
+ {"name": "midjourney_normal_032.jpg", "mos": 3.195617381, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but there is a slight softness in the rendering that might be considered a minor degradation.", "elapsed_s": 0.3329145908355713, "attempts": 1}
73
+ {"name": "xl2.2_normal_083.jpg", "mos": 3.214375205, "score": 3.0, "raw": "3 The image is clear and the details of the Eiffel Tower are well-defined, but the red splatter effect and the lack of a background context slightly reduce the overall quality.", "elapsed_s": 0.364635705947876, "attempts": 1}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos": 3.231255627, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, but the background is slightly blurred which is a common technique to emphasize the subject.", "elapsed_s": 0.3090369701385498, "attempts": 1}
75
+ {"name": "xl2.2_normal_182.jpg", "mos": 3.270286787, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but there is a slight lack of depth and contrast that prevents it from being a perfect 5.", "elapsed_s": 0.32667112350463867, "attempts": 1}
76
+ {"name": "midjourney_normal_185.jpg", "mos": 3.30238721, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details are well-defined, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.3540687561035156, "attempts": 1}
77
+ {"name": "xl2.2_normal_033.jpg", "mos": 3.344956193, "score": 4.0, "raw": "4 The image is clear and well-lit, with good detail and color accuracy. However, there is a slight softness to the image that prevents it from being a perfect 5.", "elapsed_s": 0.31570911407470703, "attempts": 1}
78
+ {"name": "sd1.5_normal_293.jpg", "mos": 3.374329815, "score": 4.0, "raw": "4 The image is of high quality with clean lines, sharp details, and no visible noise or compression artifacts. The lighting and shading are well-executed, contributing to a visually appealing and realistic appearance.", "elapsed_s": 0.3512446880340576, "attempts": 1}
79
+ {"name": "midjourney_normal_179.jpg", "mos": 3.387959109, "score": 4.0, "raw": "4\n\nThe image is of high quality with clear details, vibrant colors, and no visible noise or compression artifacts. The underwater scene is well-lit and the textures of the rocks and plants are sharp.", "elapsed_s": 0.33716869354248047, "attempts": 1}
80
+ {"name": "xl2.2_normal_121.jpg", "mos": 3.424268421, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines and vibrant colors, but it appears to be a digital illustration rather than a photograph, which might slightly lower the score. The details are sharp, and there are no visible compression artifacts or noise.", "elapsed_s": 0.44797611236572266, "attempts": 1}
81
+ {"name": "midjourney_normal_200.jpg", "mos": 3.455503573, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with a high level of detail and a smooth color gradient. The lines are sharp, and there are no visible artifacts or noise, indicating a high perceptual quality.", "elapsed_s": 0.473569393157959, "attempts": 1}
82
+ {"name": "xl2.2_normal_114.jpg", "mos": 3.472753415, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details of the donut and its toppings are well-defined, and the lighting is even, contributing to the high quality of the image.", "elapsed_s": 0.3909447193145752, "attempts": 1}
83
+ {"name": "xl2.2_normal_211.jpg", "mos": 3.502054974, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with a soft focus that adds to the aesthetic quality. The lighting is well-balanced, and there are no visible artifacts or noise that would detract from the overall quality. The subject is in focus, and the composition is pleasing, which contributes to a high-quality image.", "elapsed_s": 0.5925869941711426, "attempts": 3}
84
+ {"name": "xl2.2_normal_014.jpg", "mos": 3.516316957, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail and color, but there is a slight softness in the background which slightly reduces the overall quality from a perfect 5.", "elapsed_s": 0.41483330726623535, "attempts": 1}
85
+ {"name": "sd1.5_lowcorr_173.jpg", "mos": 3.544604966, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The textures of the stones, plants, and the wooden structure are well-defined, and the lighting is even, contributing to the overall quality of the image.", "elapsed_s": 0.5120811462402344, "attempts": 1}
86
+ {"name": "sd1.5_lowcorr_099.jpg", "mos": 3.576252467, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, suggesting it is not heavily degraded. However, there is a slight lack of depth and the lighting seems a bit flat, which might slightly lower the score. The image is not compressed or noisy, and the details are well-defined.", "elapsed_s": 0.6167137622833252, "attempts": 1}
87
+ {"name": "DALLE2_normal_284.jpg", "mos": 3.593502309, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The lighting is well-balanced, and the subject is in focus, which contributes to the overall quality of the image.", "elapsed_s": 0.5308170318603516, "attempts": 1}
88
+ {"name": "xl2.2_normal_274.jpg", "mos": 3.628001993, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and color saturation are well-balanced, and the subject is in focus, making it a high-quality image.", "elapsed_s": 0.49460339546203613, "attempts": 1}
89
+ {"name": "sd1.5_normal_231.jpg", "mos": 3.64048937, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and no visible noise or compression artifacts. The lighting and color are well-balanced, contributing to the overall perception of a high-quality image.", "elapsed_s": 0.47447705268859863, "attempts": 1}
90
+ {"name": "sd1.5_lowstep_242.jpg", "mos": 3.671121754, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines, sharp details, and no visible noise or compression artifacts. The lighting is even, and the colors are well-defined, contributing to a visually pleasing and professional appearance.", "elapsed_s": 0.5151426792144775, "attempts": 1}
91
+ {"name": "sd1.5_highcorr_002.jpg", "mos": 3.688435461, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible noise and artifacts, particularly around the edges of the astronaut and the planets. The colors are vibrant, but the overall sharpness and clarity are not at the highest level, which is why it is not rated as a 5.", "elapsed_s": 0.6207389831542969, "attempts": 1}
92
+ {"name": "sd1.5_highcorr_121.jpg", "mos": 3.744508689, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the cat's fur and the leaf. The colors are vibrant, and there is no visible noise or compression artifacts. However, the background is slightly out of focus, which is a common technique to draw attention to the subject but it slightly reduces the overall quality from a perfect 5.", "elapsed_s": 0.6562070846557617, "attempts": 1}
93
+ {"name": "midjourney_normal_005.jpg", "mos": 3.773032655, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and no visible noise or compression artifacts. The colors are vibrant, and the subject is well-defined against the background, indicating a high-quality image.", "elapsed_s": 0.426516056060791, "attempts": 1}
94
+ {"name": "xl2.2_normal_047.jpg", "mos": 3.800500414, "score": 3.0, "raw": "3\n\nThe image appears to be of moderate quality, with some graininess and lack of sharpness, which is common for older photographs. The details are not very crisp, and there are some visible artifacts, particularly in the lighting and contrast. The subject is recognizable, but the overall image quality is not high.", "elapsed_s": 0.6032676696777344, "attempts": 1}
95
+ {"name": "xl2.2_normal_129.jpg", "mos": 3.825753384, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clean and sharp appearance. The lighting is well-balanced, and there are no visible artifacts or noise. The details in the subject's face are clear, and the background is softly blurred, which helps to emphasize the subject.", "elapsed_s": 0.508568286895752, "attempts": 1}
96
+ {"name": "sd1.5_normal_139.jpg", "mos": 3.897509797, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and some noise, which slightly reduces its quality from a perfect 5. The composition and lighting are well-executed, making it a strong 4.", "elapsed_s": 0.4957606792449951, "attempts": 1}
97
+ {"name": "midjourney_normal_170.jpg", "mos": 3.923239841, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, with a soft focus that adds to the dreamy quality. The butterflies and background are well-defined, and there are no visible artifacts or noise. However, the slight softness might be considered a slight degradation from a perfect score.", "elapsed_s": 0.4683525562286377, "attempts": 1}
98
+ {"name": "sd1.5_normal_009.jpg", "mos": 3.986962403, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clear focus on the subject, sharp details, and a high level of contrast. The lighting and shadows are well-defined, and there are no visible artifacts or noise that would detract from the overall quality.", "elapsed_s": 0.6244165897369385, "attempts": 1}
99
+ {"name": "xl2.2_normal_144.jpg", "mos": 4.106196029, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clean and sharp appearance. The details in the subject's hair, clothing, and jewelry are well-defined, and the background is slightly blurred, which helps to emphasize the subject. There are no visible noise, compression artifacts, or blurring that would detract from the overall quality of the image.", "elapsed_s": 0.6480429172515869, "attempts": 1}
bench-Q4_K_M.jsonl ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos": 0.0, "score": 1.0, "raw": "1\nThe image is completely black, indicating no discernible content or detail, which is the lowest possible quality on the given scale.", "elapsed_s": 0.38585901260375977, "attempts": 1}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos": 0.195283431, "score": 1.0, "raw": "1\nThe image appears to be heavily degraded, with low visibility and a lack of discernible details, likely due to noise or compression artifacts.", "elapsed_s": 0.3518190383911133, "attempts": 1}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos": 0.339513003, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern any specific content or features. The lack of sharpness and clarity indicates a low perceptual quality.", "elapsed_s": 0.5915875434875488, "attempts": 1}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos": 0.550374317, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks any discernible details, making it impossible to assess any quality beyond the severe degradation.", "elapsed_s": 0.4956481456756592, "attempts": 1}
5
+ {"name": "glide_normal_225.jpg", "mos": 0.613396089, "score": 1.0, "raw": "1\nThe image appears heavily degraded with a lack of clear details, likely due to heavy noise or compression artifacts, making it difficult to discern any specific content or features.", "elapsed_s": 0.4787447452545166, "attempts": 1}
6
+ {"name": "glide_normal_094.jpg", "mos": 0.678182301, "score": 1.0, "raw": "1\nThe image appears to be heavily degraded, with significant noise and a lack of clarity, making it difficult to discern details or identify the subject.", "elapsed_s": 0.5585665702819824, "attempts": 1}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos": 0.739960598, "score": 1.0, "raw": "1\nThe image is heavily distorted and lacks clear details, making it difficult to discern any specific content or features. The blurriness and lack of sharpness suggest a low perceptual quality.", "elapsed_s": 0.5173153877258301, "attempts": 1}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos": 0.780698266, "score": 1.0, "raw": "1\nThe image is heavily distorted, with visible artifacts and a lack of clarity, making it difficult to discern details or identify the subject.", "elapsed_s": 0.4130396842956543, "attempts": 1}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos": 0.831522735, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern any specific features or content. The lack of sharpness and clarity indicates a low perceptual quality.", "elapsed_s": 0.5605027675628662, "attempts": 1}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos": 0.875752826, "score": 2.0, "raw": "2\n\nThe image appears to have a high level of noise and lacks sharpness, which are common issues in low-quality digital images. The details are not clear, and there is a noticeable lack of fine detail that would be present in a high-quality image.", "elapsed_s": 0.5338869094848633, "attempts": 1}
11
+ {"name": "glide_normal_280.jpg", "mos": 0.902526954, "score": 3.0, "raw": "3\n\nThe image appears to be somewhat blurry and lacks fine detail, which suggests it may have been compressed or has some level of noise. However, the basic shapes and features are still discernible, indicating it is not severely degraded.", "elapsed_s": 0.6001987457275391, "attempts": 1}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos": 0.940601322, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 0.5302655696868896, "attempts": 1}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos": 1.006207915, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern any specific features or content. The lack of sharpness and clarity indicates a severe degradation in perceptual quality.", "elapsed_s": 0.5843520164489746, "attempts": 1}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos": 1.038703499, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of noise and some blurriness, which slightly degrades its quality. However, the details are still somewhat discernible, and there are no severe artifacts or compression issues.", "elapsed_s": 0.5557968616485596, "attempts": 1}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos": 1.075025374, "score": 2.0, "raw": "2\n\nThe image appears to have a high level of distortion and artifacts, which significantly degrade the visual quality. The shapes and colors are not clear, and there is a lack of sharpness and detail that would be expected in a high-quality image.", "elapsed_s": 0.5513300895690918, "attempts": 1}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos": 1.126728573, "score": 2.0, "raw": "2\n\nThe image appears to have a low resolution and lacks sharpness, which is evident in the blurring of details and the presence of noise. The colors are somewhat muted, and there is a lack of clarity in the edges and textures, which are indicative of a lower perceptual quality.", "elapsed_s": 0.5524539947509766, "attempts": 1}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos": 1.182958257, "score": 1.0, "raw": "1\nThe image appears heavily distorted with visible artifacts and a lack of clarity, making it difficult to discern details or identify the subject.", "elapsed_s": 0.4115769863128662, "attempts": 1}
18
+ {"name": "glide_normal_157.jpg", "mos": 1.269550286, "score": 3.0, "raw": "3\n\nThe image appears to have some level of distortion or compression, as indicated by the lack of fine detail and the somewhat blurry appearance of the object. The colors are somewhat muted, and there is a lack of sharpness that would be expected in a high-quality image.", "elapsed_s": 0.5011446475982666, "attempts": 1}
19
+ {"name": "DALLE2_normal_268.jpg", "mos": 1.351025623, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks detail, making it difficult to discern specific features or objects. The overall quality is very low, indicating severe degradation.", "elapsed_s": 0.5044748783111572, "attempts": 1}
20
+ {"name": "glide_normal_142.jpg", "mos": 1.391281461, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with vibrant colors and fine detail visible in the petals and stamens. There are no visible artifacts or noise, indicating a high perceptual quality.", "elapsed_s": 0.4841606616973877, "attempts": 1}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos": 1.445015122, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern details, and the overall clarity is very low, indicating a severe degradation in perceptual quality.", "elapsed_s": 0.394000768661499, "attempts": 1}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos": 1.48681785, "score": 2.0, "raw": "2\n\nThe image appears to have a low resolution and lacks sharpness, which is evident in the blurry edges and lack of fine detail. The color and lighting are somewhat uniform, but the overall clarity and definition are not high, indicating a perceptual quality of 2.", "elapsed_s": 0.45346999168395996, "attempts": 1}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos": 1.540771109, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a somewhat painterly quality, which gives it a stylized appearance rather than a high level of detail. The lighting and color are well-balanced, but the lack of sharpness and fine detail suggests it is not of the highest perceptual quality.", "elapsed_s": 0.48336172103881836, "attempts": 1}
24
+ {"name": "glide_normal_066.jpg", "mos": 1.619473192, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which is why it doesn't quite reach a 5. However, the subject is still recognizable and the overall composition is clear enough to understand the content.", "elapsed_s": 0.5297544002532959, "attempts": 1}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos": 1.711133213, "score": 3.0, "raw": "3\n\nThe image has a high level of detail and clarity, with a clear focus on the subject. However, the artistic style and the presence of blood splatters and drips might be considered as a stylistic choice rather than a degradation of quality. The image is clean and sharp, with no visible noise or compression artifacts.", "elapsed_s": 0.6360883712768555, "attempts": 1}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos": 1.776898668, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of distortion, with some blurring and a lack of sharpness, which is not ideal but not severe enough to be classified as heavily degraded. The structure is somewhat recognizable, but the details are not crisp.", "elapsed_s": 0.5076930522918701, "attempts": 1}
27
+ {"name": "sd1.5_normal_068.jpg", "mos": 1.894194533, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and the edges are not perfectly sharp, which slightly reduces its quality from a perfect 5.", "elapsed_s": 0.46339964866638184, "attempts": 1}
28
+ {"name": "sd1.5_normal_186.jpg", "mos": 1.916425889, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible brush strokes and soft edges, which are common in digital paintings. The colors are vibrant, but the overall sharpness and absence of noise or compression artifacts are not at the highest level, hence a rating of 3.", "elapsed_s": 0.538637638092041, "attempts": 1}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos": 1.971039124, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the subject is still recognizable and the details are discernible, indicating it is not severely degraded.", "elapsed_s": 0.4580116271972656, "attempts": 1}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos": 2.004546739, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and vibrant colors, which are characteristic of high-quality astronomical images. However, there is a slight presence of noise and graininess, which slightly reduces the overall quality from a perfect 5. The image is not severely degraded, and the details are still quite clear and distinguishable.", "elapsed_s": 0.5414583683013916, "attempts": 1}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos": 2.03716536, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and sharp edges, but there is a slight lack of depth and the lighting seems a bit flat, which might slightly lower the score. However, the overall quality is still quite high.", "elapsed_s": 0.47500085830688477, "attempts": 1}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos": 2.075576292, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a somewhat dreamy quality, which might be intentional for artistic effect. However, the lack of sharpness and the presence of what appears to be noise or graininess detract from the overall quality. The lighting and color are well-balanced, but the lack of crisp detail brings it down from a higher rating.", "elapsed_s": 0.5871627330780029, "attempts": 1}
33
+ {"name": "glide_normal_108.jpg", "mos": 2.138862877, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with sharp details and clear textures, particularly in the feathers and the eye. The colors are vibrant and the contrast is well-balanced, which suggests that the image is not heavily degraded. However, the background is somewhat blurred, which might slightly lower the overall quality to a 4.", "elapsed_s": 0.5968818664550781, "attempts": 1}
34
+ {"name": "xl2.2_normal_171.jpg", "mos": 2.18011346, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with vibrant colors and smooth lines. There are no visible artifacts or blurriness, indicating a high perceptual quality.", "elapsed_s": 0.40447354316711426, "attempts": 1}
35
+ {"name": "sd1.5_normal_080.jpg", "mos": 2.210104633, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and vibrant colors. However, there is a slight lack of sharpness and some minor noise, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.4058663845062256, "attempts": 1}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos": 2.293494507, "score": 2.0, "raw": "2\nThe image is blurry and lacks sharpness, which affects its overall quality. The details are not clear, and the image appears to be out of focus, which is why it is not rated higher.", "elapsed_s": 0.49698376655578613, "attempts": 1}
37
+ {"name": "sd1.5_normal_216.jpg", "mos": 2.326531297, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details of the mirror frame and the reflection are sharp, indicating a high perceptual quality.", "elapsed_s": 0.4660623073577881, "attempts": 1}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos": 2.36946733, "score": 3.0, "raw": "3\n\nThe image has a moderate level of blur and lacks sharpness, which affects its overall quality. The lighting and color are somewhat muted, and there is a lack of fine detail that would typically be present in a high-quality image. The subject is not clearly defined, and the background is not distinct, which further contributes to the lower quality rating.", "elapsed_s": 0.672405481338501, "attempts": 1}
39
+ {"name": "DALLE2_normal_223.jpg", "mos": 2.40326321, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus and some noise, which slightly degrades its quality. The colors are muted and the details are not very sharp, which is why it doesn't quite reach a 5. However, the image is not severely degraded and the overall composition is clear.", "elapsed_s": 0.5906095504760742, "attempts": 1}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos": 2.442957962, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus and some motion blur, which slightly degrades the sharpness and detail. However, the colors are vibrant and the subject is recognizable, indicating a moderate level of quality.", "elapsed_s": 0.4408900737762451, "attempts": 1}
41
+ {"name": "DALLE2_normal_018.jpg", "mos": 2.476222723, "score": 3.0, "raw": "3\n\nThe image appears to have some compression artifacts and a lack of sharpness, which slightly degrades its quality. However, the main subject is still recognizable and the overall composition is clear.", "elapsed_s": 0.5162241458892822, "attempts": 1}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos": 2.491680335, "score": 3.0, "raw": "3\nThe image appears to have some noise and compression artifacts, which slightly degrade the quality, but the details are still discernible.", "elapsed_s": 0.4442329406738281, "attempts": 1}
43
+ {"name": "xl2.2_normal_178.jpg", "mos": 2.518413241, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a well-defined subject and background. The lighting and colors are vibrant, and there are no visible artifacts or blurring that would detract from the overall quality. However, the image appears to be digitally manipulated, which slightly reduces its quality from a purely photographic standpoint.", "elapsed_s": 0.5040209293365479, "attempts": 1}
44
+ {"name": "sd1.5_normal_101.jpg", "mos": 2.542752246, "score": 4.0, "raw": "4\n\nThe image appears to have a good level of detail and clarity, with no visible noise or compression artifacts. The lighting is even, and the subject is in focus, which contributes to a high-quality perception. However, the background is somewhat plain and does not add much to the overall quality, which is why it is not a perfect 5.", "elapsed_s": 0.6369013786315918, "attempts": 1}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos": 2.560764083, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with vibrant colors and smooth gradients. There are no visible artifacts or distortions that would typically indicate lower quality. The composition is well-defined, and the image seems to be of good resolution.", "elapsed_s": 0.47619009017944336, "attempts": 1}
46
+ {"name": "xl2.2_normal_221.jpg", "mos": 2.580492981, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and sharp edges, but there is a slight softness in the lighting and the background is not as sharp as the subject. The subject and the goose are in focus, and there are no visible artifacts or noise.", "elapsed_s": 0.5418288707733154, "attempts": 1}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos": 2.610261314, "score": 3.0, "raw": "3\n\nThe image appears to have some distortion and a lack of sharpness, which is evident in the edges and overall clarity. The colors are vibrant, but the image does not meet the criteria for high quality due to the visible distortions.", "elapsed_s": 0.5081684589385986, "attempts": 1}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos": 2.64254653, "score": 3.0, "raw": "3\n\nThe image has a moderate level of detail and clarity, with some areas appearing slightly pixelated or lacking in sharpness. The colors are vibrant, but the overall image quality is not the highest, indicating some degradation in the perceptual quality.", "elapsed_s": 0.4758327007293701, "attempts": 1}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos": 2.660597966, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and vibrant colors, but there is a slight softness in the edges and some minor noise, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.5110039710998535, "attempts": 1}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos": 2.674859949, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight softness in the edges and some areas appear a bit blurry, which slightly reduces the overall quality. However, the image is not severely degraded and the details are still quite clear.", "elapsed_s": 0.5075130462646484, "attempts": 1}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos": 2.692443672, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean details and sharp edges, though there might be a slight softness in the lighting which could be considered a minor flaw. However, the overall quality is still quite good.", "elapsed_s": 0.5718390941619873, "attempts": 1}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos": 2.731010208, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a smooth gradient and well-defined edges. The colors are vibrant and the overall composition is visually appealing. However, there is a slight hint of noise or graininess, which slightly reduces the quality from a perfect 5.", "elapsed_s": 0.47464632987976074, "attempts": 1}
53
+ {"name": "xl2.2_normal_101.jpg", "mos": 2.747600946, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with a clean and sharp appearance. The lighting and contrast are well-balanced, and there are no visible artifacts or distortions. The subject is well-defined, and the overall composition is aesthetically pleasing.", "elapsed_s": 0.5677781105041504, "attempts": 1}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos": 2.782759734, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details of the equipment and the individuals are sharp, indicating a high-quality image.", "elapsed_s": 0.5235621929168701, "attempts": 1}
55
+ {"name": "xl2.2_normal_103.jpg", "mos": 2.803217798, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and shading are well-executed, giving the image a clean and sharp appearance. The textures on the rock and the water are distinct, and the overall composition is well-balanced.", "elapsed_s": 0.5460300445556641, "attempts": 1}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos": 2.841733922, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good focus on the subject, the mouse. The lighting is even, and there are no visible artifacts or noise. The background is slightly out of focus, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 0.43171215057373047, "attempts": 1}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos": 2.869008944, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a painterly quality, which gives it a certain artistic appeal but also results in a lack of sharpness and detail that would be expected in a high-quality image. The colors are muted and the overall composition is somewhat abstract, which might be intentional for artistic effect, but it does not contribute to the image's clarity or sharpness.", "elapsed_s": 0.5290420055389404, "attempts": 1}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos": 2.886258786, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with smooth gradients and a lack of visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a high-quality visual experience. However, the image is not perfect and may have slight imperfections that prevent it from being rated a 5.", "elapsed_s": 0.6157200336456299, "attempts": 1}
59
+ {"name": "DALLE2_normal_218.jpg", "mos": 2.908664621, "score": 3.0, "raw": "3\n\nThe image has a moderate level of noise and graininess, which slightly degrades the overall quality. The lighting is uneven, and the details are not very sharp, which further reduces the image quality. However, the image is not severely degraded, and the main elements are still discernible.", "elapsed_s": 0.4965357780456543, "attempts": 1}
60
+ {"name": "sd1.5_normal_003.jpg", "mos": 2.92075847, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with vibrant colors and clear details, but there is a slight softness in the edges of the spiral structure, which might be due to the nature of the astronomical image or the resolution. However, it does not have any visible noise, compression artifacts, or blurring that would significantly degrade its quality.", "elapsed_s": 0.7494947910308838, "attempts": 1}
61
+ {"name": "xl2.2_normal_160.jpg", "mos": 2.941741401, "score": 3.0, "raw": "3\n\nThe image has a clear subject and a distinct background, but the lighting and reflections create some glare and the image appears slightly overexposed in certain areas, which slightly reduces its quality. The details are not entirely sharp, and there is a slight lack of clarity in the edges of the subject and the background.", "elapsed_s": 0.5803694725036621, "attempts": 1}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos": 2.966953132, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 0.41644978523254395, "attempts": 1}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos": 2.975194143, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and vibrant colors. The details in the character's attire and the background are sharp, and there are no visible artifacts or blurring that would typically indicate lower quality. However, the image does not have the absolute highest level of detail and clarity that would earn a perfect score of 5.", "elapsed_s": 0.6553530693054199, "attempts": 1}
64
+ {"name": "sd1.5_normal_129.jpg", "mos": 3.001476926, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines, sharp details, and a lack of visible noise or compression artifacts. The lighting is soft and even, contributing to the overall clarity and natural appearance of the subject.", "elapsed_s": 0.5368912220001221, "attempts": 1}
65
+ {"name": "xl2.2_normal_164.jpg", "mos": 3.033265998, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with good color saturation and sharp details. However, there is a slight softness in the edges, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.3906996250152588, "attempts": 1}
66
+ {"name": "sd1.5_normal_155.jpg", "mos": 3.062007692, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible in the tuk-tuk and the surrounding environment. The colors are vibrant, and there is no noticeable noise or compression artifacts. However, the image could be slightly sharper, which would elevate the rating to 5.", "elapsed_s": 0.526231050491333, "attempts": 1}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos": 3.091620808, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with well-defined colors and details. However, there is a slight softness in the edges and a lack of fine detail that might be expected in a high-quality image, which prevents it from reaching a perfect score.", "elapsed_s": 0.5312385559082031, "attempts": 1}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos": 3.108253189, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and color are well-balanced, and the overall composition is visually appealing. However, the image is not perfect and could be rated slightly higher if it were completely free of any minor imperfections or distractions.", "elapsed_s": 0.5126285552978516, "attempts": 1}
69
+ {"name": "xl2.2_normal_100.jpg", "mos": 3.135881857, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting is well-balanced, and there are no visible artifacts or noise. The composition is also well-executed, contributing to the overall high perceptual quality.", "elapsed_s": 0.4621551036834717, "attempts": 1}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos": 3.150815738, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a well-defined subject (the jellyfish) and a clean background. The lighting and color are vibrant, and there are no visible artifacts or blurring that would detract from the overall quality.", "elapsed_s": 0.4587419033050537, "attempts": 1}
71
+ {"name": "DALLE2_normal_212.jpg", "mos": 3.169097903, "score": 4.0, "raw": "4\n\nThe image is clear and the details of the flowers are well-defined, with no visible noise or compression artifacts. The lighting is even, and the colors are vibrant, contributing to a high-quality appearance.", "elapsed_s": 0.43548107147216797, "attempts": 1}
72
+ {"name": "midjourney_normal_032.jpg", "mos": 3.195617381, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with a painterly style, but there is a slight lack of sharpness and detail, which is characteristic of the artistic style rather than a degradation in quality. The colors are well-defined, and the subject is clear, indicating a high-quality image in terms of its artistic representation.", "elapsed_s": 0.6079444885253906, "attempts": 1}
73
+ {"name": "xl2.2_normal_083.jpg", "mos": 3.214375205, "score": 3.0, "raw": "3\n\nThe image has a stylized, artistic quality with a clear subject (the Eiffel Tower) and distinct color contrasts. However, the red splatter effect and the lack of fine detail suggest it is not a photograph but rather a digital illustration or painting. The edges are somewhat soft, and there is a lack of fine detail that would be expected in a high-quality image.", "elapsed_s": 0.6657118797302246, "attempts": 1}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos": 3.231255627, "score": 4.0, "raw": "4\n\nThe image is clear and the details of the frog and the hat are well-defined. The lighting is good and the colors are vibrant, which contributes to a high-quality appearance. However, there is a slight softness in the edges, which prevents it from being a perfect 5.", "elapsed_s": 0.4918344020843506, "attempts": 1}
75
+ {"name": "xl2.2_normal_182.jpg", "mos": 3.270286787, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with no visible noise or compression artifacts. The lines are sharp, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.469480037689209, "attempts": 1}
76
+ {"name": "midjourney_normal_185.jpg", "mos": 3.30238721, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with no visible noise, compression artifacts, or blur. The lines are sharp, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.4637451171875, "attempts": 1}
77
+ {"name": "xl2.2_normal_033.jpg", "mos": 3.344956193, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with good clarity and sharpness. The details in the clothing and the background are well-defined, and there are no visible artifacts or compression issues. The lighting is even, and the subject is in focus, contributing to the overall high perceptual quality.", "elapsed_s": 0.5181677341461182, "attempts": 1}
78
+ {"name": "sd1.5_normal_293.jpg", "mos": 3.374329815, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, though there is a slight softness in the lighting which might be intentional to give a more cartoonish or stylized look. The colors are vibrant and the overall composition is well-defined.", "elapsed_s": 0.5314042568206787, "attempts": 1}
79
+ {"name": "midjourney_normal_179.jpg", "mos": 3.387959109, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with vibrant colors and a well-defined underwater scene. The lighting and reflections are well-handled, and there are no visible artifacts or blurring that would detract from the overall quality. However, it does not quite reach the highest possible score due to the slight presence of noise and the somewhat artificial appearance of the underwater environment, which might be due to the nature of the image or the post-processing involved.", "elapsed_s": 0.6714949607849121, "attempts": 1}
80
+ {"name": "xl2.2_normal_121.jpg", "mos": 3.424268421, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines and vibrant colors, but there is a slight lack of sharpness and detail in the fur texture, which prevents it from being a perfect 5.", "elapsed_s": 0.3585691452026367, "attempts": 3}
81
+ {"name": "midjourney_normal_200.jpg", "mos": 3.455503573, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of clarity and smooth transitions between colors. The illustration is clean and there are no visible artifacts or distortions, indicating a high perceptual quality.", "elapsed_s": 0.4845881462097168, "attempts": 1}
82
+ {"name": "xl2.2_normal_114.jpg", "mos": 3.472753415, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good focus on the subject. The details of the donut and its toppings are sharp, and the colors are vibrant. There are no visible noise or compression artifacts, indicating a high-quality image.", "elapsed_s": 0.5729773044586182, "attempts": 1}
83
+ {"name": "xl2.2_normal_211.jpg", "mos": 3.502054974, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and a well-composed subject. There are no visible noise, compression artifacts, or blurring that would detract from its quality. The lighting is soft and even, which enhances the overall perception of the image.", "elapsed_s": 0.5069828033447266, "attempts": 1}
84
+ {"name": "xl2.2_normal_014.jpg", "mos": 3.516316957, "score": 4.0, "raw": "4\n\nThe image is very clear and sharp, with vibrant colors and fine details visible on the gecko's skin. There are no noticeable artifacts or compression issues, indicating a high quality image.", "elapsed_s": 0.4250929355621338, "attempts": 1}
85
+ {"name": "sd1.5_lowcorr_173.jpg", "mos": 3.544604966, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and detail. The textures of the stones and plants are well-defined, and the overall composition is pleasing. There are no visible artifacts or compression issues.", "elapsed_s": 0.4686746597290039, "attempts": 1}
86
+ {"name": "sd1.5_lowcorr_099.jpg", "mos": 3.576252467, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, though it is not perfectly clean with some minor imperfections. The texture and shading are well-rendered, suggesting a high level of detail and quality.", "elapsed_s": 0.4471776485443115, "attempts": 1}
87
+ {"name": "DALLE2_normal_284.jpg", "mos": 3.593502309, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clean and sharp appearance. The details in the subject's face and clothing are well-defined, and there are no visible compression artifacts or noise. The lighting is even, and the colors are vibrant, contributing to the overall high-quality perception of the image.", "elapsed_s": 0.5535202026367188, "attempts": 1}
88
+ {"name": "xl2.2_normal_274.jpg", "mos": 3.628001993, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and color saturation are well-balanced, and the subject is in focus, making it a high-quality image.", "elapsed_s": 0.547327995300293, "attempts": 1}
89
+ {"name": "sd1.5_normal_231.jpg", "mos": 3.64048937, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lion's fur texture and facial features are well-defined, and there are no visible artifacts or compression issues.", "elapsed_s": 0.48017096519470215, "attempts": 1}
90
+ {"name": "sd1.5_lowstep_242.jpg", "mos": 3.671121754, "score": 4.0, "raw": "4\n\nThe image is clean and sharp with no visible noise or compression artifacts. The details in the furniture and the reflections in the windows are clear, indicating a high-quality render.", "elapsed_s": 0.48269009590148926, "attempts": 1}
91
+ {"name": "sd1.5_highcorr_002.jpg", "mos": 3.688435461, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible noise and compression artifacts, particularly noticeable in the background and the astronaut's suit. The text is somewhat legible, but the overall quality is not high due to these imperfections.", "elapsed_s": 0.5439105033874512, "attempts": 1}
92
+ {"name": "sd1.5_highcorr_121.jpg", "mos": 3.744508689, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the cat's fur and the leaf. The colors are vibrant, and there is no visible noise or compression artifacts. The focus is on the cat's face, which is well-defined. The background is slightly blurred, which helps to emphasize the subject. Overall, it is a high-quality image.", "elapsed_s": 0.6251530647277832, "attempts": 1}
93
+ {"name": "midjourney_normal_005.jpg", "mos": 3.773032655, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and no visible noise or compression artifacts. The colors are vibrant, and the contrast is well-balanced, contributing to a high-quality visual experience.", "elapsed_s": 0.4628448486328125, "attempts": 1}
94
+ {"name": "xl2.2_normal_047.jpg", "mos": 3.800500414, "score": 3.0, "raw": "3\n\nThe image is clear and well-lit, with good contrast and sharpness. However, there are some minor artifacts and noise present, which slightly reduce its quality. The details in the clothing and background are discernible, but not perfectly crisp.", "elapsed_s": 0.5758724212646484, "attempts": 1}
95
+ {"name": "xl2.2_normal_129.jpg", "mos": 3.825753384, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean and sharp details, but there is a slight softness in the lighting which might be intentional for a certain effect. The skin appears smooth and the colors are well-balanced, indicating a good level of quality.", "elapsed_s": 0.4993624687194824, "attempts": 1}
96
+ {"name": "sd1.5_normal_139.jpg", "mos": 3.897509797, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and some noise, which slightly reduces its quality. The overall composition is visually appealing, but the lack of sharpness and some noise bring it down from a perfect 5.", "elapsed_s": 0.5750973224639893, "attempts": 1}
97
+ {"name": "midjourney_normal_170.jpg", "mos": 3.923239841, "score": 4.0, "raw": "4\n\nThe image is visually appealing with vibrant colors and a clear focus on the butterflies. The background is slightly blurred, which helps to emphasize the butterflies, and the lighting is soft and natural, contributing to the overall high-quality appearance. However, there are some minor artifacts and noise, which slightly reduce the score to 4.", "elapsed_s": 0.5730383396148682, "attempts": 1}
98
+ {"name": "sd1.5_normal_009.jpg", "mos": 3.986962403, "score": 4.0, "raw": "4. The image is clear and sharp, with good contrast and detail, but there is a slight graininess which might be due to the black and white format or the artistic choice. It does not have any obvious compression artifacts or blurring.", "elapsed_s": 0.5334627628326416, "attempts": 1}
99
+ {"name": "xl2.2_normal_144.jpg", "mos": 4.106196029, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and a well-composed subject. The details in the hair and the texture of the dress are visible, and there are no noticeable artifacts or compression issues. The background is slightly blurred, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 0.522160530090332, "attempts": 1}
bench-Q5_K_M.jsonl ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos": 0.0, "score": 1.0, "raw": "1. The image is completely black, indicating no discernible content or details. This suggests a severe degradation in perceptual quality, as there is no information to assess sharpness, noise, or other qualities.", "elapsed_s": 0.4529438018798828, "attempts": 1}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos": 0.195283431, "score": 1.0, "raw": "1\nThe image is very dark and lacks clear details, making it difficult to discern any specific features or content. The overall impression is one of low visibility and poor quality.", "elapsed_s": 0.26009130477905273, "attempts": 1}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos": 0.339513003, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any clear details or content. The lack of focus and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.4932518005371094, "attempts": 1}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos": 0.550374317, "score": 1.0, "raw": "1. The image is heavily blurred and lacks any discernible details, making it difficult to identify any specific content or features. This level of degradation significantly impacts the perceptual quality, making it the lowest possible rating on the given scale.", "elapsed_s": 0.535374641418457, "attempts": 1}
5
+ {"name": "glide_normal_225.jpg", "mos": 0.613396089, "score": 1.0, "raw": "1\nThe image is heavily degraded with significant noise, compression artifacts, and blur, making it difficult to discern any clear details or content.", "elapsed_s": 0.4910407066345215, "attempts": 1}
6
+ {"name": "glide_normal_094.jpg", "mos": 0.678182301, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and compression artifacts, making it difficult to discern any clear details or features.", "elapsed_s": 0.4988853931427002, "attempts": 1}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos": 0.739960598, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or objects. The overall quality is very poor, indicating severe degradation.", "elapsed_s": 0.4550650119781494, "attempts": 1}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos": 0.780698266, "score": 1.0, "raw": "1\nThe image is heavily distorted, with visible artifacts and a lack of clarity, making it difficult to discern details.", "elapsed_s": 0.42655253410339355, "attempts": 1}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos": 0.831522735, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or content. The lack of clarity and sharpness significantly degrades the perceptual quality.", "elapsed_s": 0.48564577102661133, "attempts": 1}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos": 0.875752826, "score": 2.0, "raw": "2\n\nThe image appears to have a moderate level of noise and lacks sharpness, which affects its overall quality. The details are not very clear, and there are some artifacts present, which are not ideal for a high-quality image.", "elapsed_s": 0.6202590465545654, "attempts": 1}
11
+ {"name": "glide_normal_280.jpg", "mos": 0.902526954, "score": 2.0, "raw": "2. The image is somewhat blurry and lacks detail, which is typical for low-resolution or compressed images. The lack of sharpness and detail suggests it is not of high quality.", "elapsed_s": 0.49662017822265625, "attempts": 1}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos": 0.940601322, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 0.5002150535583496, "attempts": 1}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos": 1.006207915, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern any specific features or content. The overall quality is very poor, indicating a severe degradation in perceptual quality.", "elapsed_s": 0.47412919998168945, "attempts": 1}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos": 1.038703499, "score": 3.0, "raw": "3\n\nThe image has a moderate level of noise and some blurriness, which slightly degrades its quality. However, the details are still discernible, and the overall composition is clear.", "elapsed_s": 0.5467758178710938, "attempts": 1}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos": 1.075025374, "score": 1.0, "raw": "1\nThe image exhibits heavy noise, compression artifacts, and a lack of sharpness, making it difficult to discern clear details or content.", "elapsed_s": 0.5806264877319336, "attempts": 1}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos": 1.126728573, "score": 2.0, "raw": "2. The image appears to have a significant amount of noise and blurriness, which affects the overall clarity and detail. The edges are not sharp, and there is a lack of fine detail that would be present in a high-quality image.", "elapsed_s": 0.5489542484283447, "attempts": 1}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos": 1.182958257, "score": 1.0, "raw": "1\nThe image is heavily degraded with visible noise, compression artifacts, and a lack of sharpness, making it difficult to discern details.", "elapsed_s": 0.4868812561035156, "attempts": 1}
18
+ {"name": "glide_normal_157.jpg", "mos": 1.269550286, "score": 3.0, "raw": "3\n\nThe image appears to have some level of noise or compression artifacts, which slightly degrade the overall quality. The details are not very sharp, and there is a lack of clarity in the edges and textures.", "elapsed_s": 0.5625162124633789, "attempts": 1}
19
+ {"name": "DALLE2_normal_268.jpg", "mos": 1.351025623, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern specific details or features. The lack of sharpness and clarity suggests a low perceptual quality.", "elapsed_s": 0.5302383899688721, "attempts": 1}
20
+ {"name": "glide_normal_142.jpg", "mos": 1.391281461, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with vibrant colors and no visible noise or compression artifacts. The details of the flower's structure are well-defined, indicating a high perceptual quality.", "elapsed_s": 0.6056458950042725, "attempts": 1}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos": 1.445015122, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern details, which significantly degrades its perceptual quality.", "elapsed_s": 0.4649169445037842, "attempts": 1}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos": 1.48681785, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of blur, which affects the overall sharpness and detail. The lighting and colors are somewhat muted, and there is a lack of fine detail that would be expected in a high-quality image. The subject is recognizable, but the lack of clarity detracts from the quality.", "elapsed_s": 0.49921202659606934, "attempts": 3}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos": 1.540771109, "score": 3.0, "raw": "3 The image has a soft, painterly quality with a warm color palette, but the details are not very sharp and there is a slight blur, which prevents it from being rated higher.", "elapsed_s": 0.39116859436035156, "attempts": 1}
24
+ {"name": "glide_normal_066.jpg", "mos": 1.619473192, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which is why it doesn't qualify for a higher rating. However, the main subject is still recognizable, and the colors are vibrant, which is better than a severely degraded image.", "elapsed_s": 0.45963335037231445, "attempts": 1}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos": 1.711133213, "score": 3.0, "raw": "3 The image has a high level of detail and clarity, but the subject matter is highly stylized and surreal, which may affect the perception of quality. The colors are vibrant and the lines are sharp, but the subject's expression and the blood splatter are intentionally exaggerated for artistic effect.", "elapsed_s": 0.46164417266845703, "attempts": 1}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos": 1.776898668, "score": 3.0, "raw": "3 The image appears to have a moderate level of noise and lacks sharpness, which is typical for images that are heavily compressed or have been processed to a high degree of abstraction. The details are not very clear, and the overall quality is compromised by these factors.", "elapsed_s": 0.4567408561706543, "attempts": 1}
27
+ {"name": "sd1.5_normal_068.jpg", "mos": 1.894194533, "score": 4.0, "raw": "4 The image is vibrant and clear, with no visible noise or compression artifacts. The colors are well-defined and the details are sharp, indicating a high perceptual quality.", "elapsed_s": 0.44583654403686523, "attempts": 1}
28
+ {"name": "sd1.5_normal_186.jpg", "mos": 1.916425889, "score": 3.0, "raw": "3 The image appears to be a digital painting with a stylized, somewhat abstract quality. The colors are vibrant, and the lines are smooth, but there is a lack of fine detail and the image does not have the crispness or clarity that would be expected in a high-quality photograph or a detailed digital artwork. The overall impression is one of a stylized, artistic rendering rather than a high-resolution photograph.", "elapsed_s": 0.663182258605957, "attempts": 1}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos": 1.971039124, "score": 3.0, "raw": "3 The image is clear and the details of the portrait are distinguishable, but there is a slight blur and the lighting is not optimal, which slightly reduces the quality.", "elapsed_s": 0.3938937187194824, "attempts": 1}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos": 2.004546739, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with vibrant colors and clear details, though it may be slightly overprocessed or enhanced, which is common in astronomical images to bring out features. The stars and nebulae are well-defined, and there is a good balance of light and shadow, indicating a high-quality image.", "elapsed_s": 0.4992973804473877, "attempts": 1}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos": 2.03716536, "score": 4.0, "raw": "4 The image is clear and sharp with no visible noise or compression artifacts. The character model is well-defined, and the lighting is even, contributing to a high-quality appearance.", "elapsed_s": 0.5020172595977783, "attempts": 1}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos": 2.075576292, "score": 3.0, "raw": "3 The image has a soft focus and some noise, which slightly degrades the quality, but the subject is still recognizable and the lighting is well-balanced.", "elapsed_s": 0.36238551139831543, "attempts": 1}
33
+ {"name": "glide_normal_108.jpg", "mos": 2.138862877, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, but there is a slight yellow tint that might be considered a minor imperfection.", "elapsed_s": 0.41608619689941406, "attempts": 1}
34
+ {"name": "xl2.2_normal_171.jpg", "mos": 2.18011346, "score": 4.0, "raw": "4 The image is of high quality with clean lines and vibrant colors, but there is a slight blur around the edges which slightly reduces the score.", "elapsed_s": 0.3481864929199219, "attempts": 1}
35
+ {"name": "sd1.5_normal_080.jpg", "mos": 2.210104633, "score": 4.0, "raw": "4 The image is clear and sharp with no visible noise or compression artifacts. The details in the character's face and hair are well-defined, indicating a high-quality image.", "elapsed_s": 0.46453857421875, "attempts": 1}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos": 2.293494507, "score": 2.0, "raw": "2. The image is blurry and lacks sharpness, which affects the overall quality. The details are not clear, and the image appears to be out of focus.", "elapsed_s": 0.3569347858428955, "attempts": 1}
37
+ {"name": "sd1.5_normal_216.jpg", "mos": 2.326531297, "score": 4.0, "raw": "4 The image is clear and sharp, with no visible noise or compression artifacts. The details of the mirror frame and the reflection are well-defined.", "elapsed_s": 0.36843156814575195, "attempts": 1}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos": 2.36946733, "score": 3.0, "raw": "3\n\nThe image has a moderate level of blur and lacks sharpness, which affects the overall quality. The lighting and color are somewhat muted, and there is a lack of fine detail that would be expected in a high-quality image.", "elapsed_s": 0.3877859115600586, "attempts": 1}
39
+ {"name": "DALLE2_normal_223.jpg", "mos": 2.40326321, "score": 3.0, "raw": "3 The image appears to be a painting with a soft, somewhat blurry quality, which is typical for artistic renderings. The details are not sharp, and there is a lack of fine detail that would be expected in a high-quality photograph. However, the colors and composition are well-defined, indicating a good perceptual quality for a painting.", "elapsed_s": 0.5648117065429688, "attempts": 1}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos": 2.442957962, "score": 3.0, "raw": "3\n\nThe image appears to have a soft, painterly quality with a lack of sharpness and detail, which is characteristic of a certain artistic style or filter rather than a degradation in quality. The colors are vibrant, and the subject is recognizable, but the overall impression is more artistic than photographic.", "elapsed_s": 0.4466283321380615, "attempts": 1}
41
+ {"name": "DALLE2_normal_018.jpg", "mos": 2.476222723, "score": 3.0, "raw": "3 The image is clear and the details are distinguishable, but there is a slight blur and the lighting is not optimal, which slightly reduces the quality.", "elapsed_s": 0.37789487838745117, "attempts": 1}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos": 2.491680335, "score": 3.0, "raw": "3 The image appears to be of moderate quality, with some noise and compression artifacts present, but the details are still discernible.", "elapsed_s": 0.3965282440185547, "attempts": 1}
43
+ {"name": "xl2.2_normal_178.jpg", "mos": 2.518413241, "score": 4.0, "raw": "4\n\nThe image is visually striking and the details are clear, with a high level of sharpness and a clean composition. The lighting and colors are well-balanced, and there are no visible artifacts or noise that would detract from the overall quality.", "elapsed_s": 0.45218729972839355, "attempts": 1}
44
+ {"name": "sd1.5_normal_101.jpg", "mos": 2.542752246, "score": 4.0, "raw": "4 The image is clear and well-lit, with no visible noise or compression artifacts. The subject is in focus, and the details are sharp, indicating a high-quality image.", "elapsed_s": 0.34683752059936523, "attempts": 1}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos": 2.560764083, "score": 4.0, "raw": "4 The image is clear and the colors are vibrant, but there is a slight lack of sharpness and detail that prevents it from being a perfect 5.", "elapsed_s": 0.4906954765319824, "attempts": 1}
46
+ {"name": "xl2.2_normal_221.jpg", "mos": 2.580492981, "score": 4.0, "raw": "4 The image is clear and well-lit, with no visible noise or compression artifacts. The details of the person's clothing and the texture of the goose are sharp, indicating a high-quality image.", "elapsed_s": 0.3555724620819092, "attempts": 1}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos": 2.610261314, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, but there are some artifacts and distortions, particularly around the edges of the subject and the background, which slightly degrade the overall quality.", "elapsed_s": 0.3971097469329834, "attempts": 1}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos": 2.64254653, "score": 3.0, "raw": "3 The image has a high level of detail and color, but the lines are not perfectly sharp, and there is a slight lack of clarity in the edges, which prevents it from being rated as a high-quality image.", "elapsed_s": 0.37854576110839844, "attempts": 1}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos": 2.660597966, "score": 4.0, "raw": "4 The image is clear and well-composed, with good detail and color, but there is a slight graininess that suggests it might be a digital reproduction of a painting rather than a high-resolution photograph.", "elapsed_s": 0.35103797912597656, "attempts": 1}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos": 2.674859949, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of visual complexity and a clear, sharp focus on the subject matter. The colors are rich and the lines are well-defined, indicating a high-quality digital illustration. However, the image is not completely artifact-free, as there are some minor imperfections that slightly detract from the overall quality.", "elapsed_s": 0.454181432723999, "attempts": 1}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos": 2.692443672, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, though there is a slight lack of depth and texture that might be due to the digital nature of the character model. The lighting is well-balanced, and the character's features are rendered with good clarity.", "elapsed_s": 0.41094326972961426, "attempts": 1}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos": 2.731010208, "score": 4.0, "raw": "4 The image is visually appealing with a clear and vibrant depiction of a dragon, but it lacks the fine detail and sharpness that would be expected in a high-quality image. The colors are rich and the contrast is strong, but there is a slight softness to the edges that prevents it from being a perfect 5.", "elapsed_s": 0.4474668502807617, "attempts": 1}
53
+ {"name": "xl2.2_normal_101.jpg", "mos": 2.747600946, "score": 4.0, "raw": "4 The image is clear and sharp, with no visible noise or compression artifacts. The lighting and contrast are well-balanced, and the subject is in focus.", "elapsed_s": 0.3231368064880371, "attempts": 1}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos": 2.782759734, "score": 4.0, "raw": "4 The image is clear and well-lit, with no visible noise or compression artifacts. The details of the equipment and the individuals are sharp, indicating a high-quality image.", "elapsed_s": 0.32627296447753906, "attempts": 1}
55
+ {"name": "xl2.2_normal_103.jpg", "mos": 2.803217798, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details in the rock and the water are well-defined, and the lighting is even, contributing to a high-quality appearance.", "elapsed_s": 0.3998870849609375, "attempts": 1}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos": 2.841733922, "score": 4.0, "raw": "4 The image is clear and sharp, with good detail and a clean background, indicating a high quality photograph.", "elapsed_s": 0.41805171966552734, "attempts": 1}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos": 2.869008944, "score": 3.0, "raw": "3 The image has a soft, painterly quality with a focus on the subject's face, but the background is somewhat blurry and lacks detail, which slightly reduces the overall quality.", "elapsed_s": 0.421184778213501, "attempts": 1}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos": 2.886258786, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with smooth gradients and a lack of visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a high-quality visual presentation.", "elapsed_s": 0.3490321636199951, "attempts": 1}
59
+ {"name": "DALLE2_normal_218.jpg", "mos": 2.908664621, "score": 3.0, "raw": "3 The image has a moderate level of noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and the lighting is balanced, making it a decent quality image.", "elapsed_s": 0.32485079765319824, "attempts": 1}
60
+ {"name": "sd1.5_normal_003.jpg", "mos": 2.92075847, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of clarity and a wide range of colors. The spiral structure is well-defined, and the stars are numerous and distinct, indicating a high-quality image. However, the image is not perfect, as there are some minor artifacts and the colors are somewhat saturated, which slightly reduces the score to 4.", "elapsed_s": 0.5080351829528809, "attempts": 1}
61
+ {"name": "xl2.2_normal_160.jpg", "mos": 2.941741401, "score": 3.0, "raw": "3 The image has a clear subject and a well-defined environment, but the lighting and reflections create some visual noise and artifacts, which slightly degrade the overall quality.", "elapsed_s": 0.32455921173095703, "attempts": 1}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos": 2.966953132, "score": 3.0, "raw": "3 The image appears to have some noise and lacks sharpness, which is why it doesn't qualify for a higher rating.", "elapsed_s": 0.2775757312774658, "attempts": 1}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos": 2.975194143, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The character and background are well-defined, and there are no visible artifacts or noise. The lighting is even, and the overall composition is pleasing to the eye.", "elapsed_s": 0.39904069900512695, "attempts": 1}
64
+ {"name": "sd1.5_normal_129.jpg", "mos": 3.001476926, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, minimal noise, and no visible compression artifacts or blurring.", "elapsed_s": 0.318645715713501, "attempts": 1}
65
+ {"name": "xl2.2_normal_164.jpg", "mos": 3.033265998, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but there is a slight lack of depth and the lighting could be more natural.", "elapsed_s": 0.3638489246368408, "attempts": 1}
66
+ {"name": "sd1.5_normal_155.jpg", "mos": 3.062007692, "score": 4.0, "raw": "4 The image is clear and well-lit, with good detail in the subject and background. There are no noticeable artifacts or compression issues.", "elapsed_s": 0.319887638092041, "attempts": 1}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos": 3.091620808, "score": 4.0, "raw": "4 The image is vibrant and clear, with no visible noise or compression artifacts. The details in the trees and flowers are sharp, and the colors are well-saturated, indicating a high-quality image.", "elapsed_s": 0.46941566467285156, "attempts": 1}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos": 3.108253189, "score": 4.0, "raw": "4 The image is visually striking and has a high level of detail, with a clear and sharp focus on the tunnel's interior. The lighting and color gradients are well-executed, contributing to a high-quality appearance. However, there is a slight presence of noise, which slightly detracts from the perfect score.", "elapsed_s": 0.5082616806030273, "attempts": 1}
69
+ {"name": "xl2.2_normal_100.jpg", "mos": 3.135881857, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting is well-balanced, and there are no visible artifacts or compression issues. The subject and background are distinct, and the overall composition is pleasing to the eye.", "elapsed_s": 0.43145322799682617, "attempts": 1}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos": 3.150815738, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but there is a slight softness in the background which might be due to the artistic style rather than degradation.", "elapsed_s": 0.323657751083374, "attempts": 1}
71
+ {"name": "DALLE2_normal_212.jpg", "mos": 3.169097903, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details of the flowers are well-defined, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.3285679817199707, "attempts": 1}
72
+ {"name": "midjourney_normal_032.jpg", "mos": 3.195617381, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with smooth gradients and a lack of noise or compression artifacts. The lighting and shading are well-executed, contributing to a high-quality appearance.", "elapsed_s": 0.3783431053161621, "attempts": 1}
73
+ {"name": "xl2.2_normal_083.jpg", "mos": 3.214375205, "score": 3.0, "raw": "3 The image is clear and the details of the Eiffel Tower are well-defined, but the red splatter effect and the lack of a background context slightly reduce the overall quality.", "elapsed_s": 0.28417325019836426, "attempts": 1}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos": 3.231255627, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, but the background is slightly blurred which is a common technique to emphasize the subject. The colors are vibrant and the subject is well-defined.", "elapsed_s": 0.35134339332580566, "attempts": 1}
75
+ {"name": "xl2.2_normal_182.jpg", "mos": 3.270286787, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines and sharp details, but there is a slight softness in the lighting and shading that prevents it from being a perfect 5.", "elapsed_s": 0.38083338737487793, "attempts": 1}
76
+ {"name": "midjourney_normal_185.jpg", "mos": 3.30238721, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details are well-defined, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.3514060974121094, "attempts": 1}
77
+ {"name": "xl2.2_normal_033.jpg", "mos": 3.344956193, "score": 4.0, "raw": "4 The image is clear and well-lit, with good detail and color accuracy. However, there is a slight softness to the image that prevents it from being a perfect 5.", "elapsed_s": 0.477313756942749, "attempts": 1}
78
+ {"name": "sd1.5_normal_293.jpg", "mos": 3.374329815, "score": 4.0, "raw": "4 The image is of high quality with clean lines, sharp details, and no visible noise or compression artifacts. The lighting and shading are well-executed, contributing to a visually appealing and realistic appearance.", "elapsed_s": 0.3401782512664795, "attempts": 1}
79
+ {"name": "midjourney_normal_179.jpg", "mos": 3.387959109, "score": 4.0, "raw": "4\n\nThe image is of high quality with clear details, vibrant colors, and no visible noise or compression artifacts. The underwater scene is well-lit and the textures of the rocks and plants are sharp.", "elapsed_s": 0.3171265125274658, "attempts": 1}
80
+ {"name": "xl2.2_normal_121.jpg", "mos": 3.424268421, "score": 4.0, "raw": "4 The image is of high quality with clean lines and vibrant colors, but there is a slight lack of sharpness in the fur texture, which prevents it from being a perfect 5.", "elapsed_s": 0.39519357681274414, "attempts": 1}
81
+ {"name": "midjourney_normal_200.jpg", "mos": 3.455503573, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with a high level of detail and a smooth color gradient. The lines are sharp, and there are no visible artifacts or noise, indicating a high perceptual quality.", "elapsed_s": 0.31742215156555176, "attempts": 1}
82
+ {"name": "xl2.2_normal_114.jpg", "mos": 3.472753415, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details of the donut and its toppings are well-defined, and the lighting is even, contributing to the high quality of the image.", "elapsed_s": 0.33930039405822754, "attempts": 1}
83
+ {"name": "xl2.2_normal_211.jpg", "mos": 3.502054974, "score": 4.0, "raw": "4 The image is clear and sharp, with good lighting and color balance. There are no visible noise, compression artifacts, or blur. The subject is in focus, and the details are well-defined.", "elapsed_s": 0.32508420944213867, "attempts": 1}
84
+ {"name": "xl2.2_normal_014.jpg", "mos": 3.516316957, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, vibrant colors, and no visible noise or compression artifacts. The focus is excellent, and the subject is well-composed.", "elapsed_s": 0.4379000663757324, "attempts": 1}
85
+ {"name": "sd1.5_lowcorr_173.jpg", "mos": 3.544604966, "score": 4.0, "raw": "4 The image is clear and sharp, with good lighting and detail in the garden and building. There are no visible noise or compression artifacts.", "elapsed_s": 0.39553022384643555, "attempts": 1}
86
+ {"name": "sd1.5_lowcorr_099.jpg", "mos": 3.576252467, "score": 4.0, "raw": "4 The image is of high quality with clean lines and sharp details, but there is a slight lack of depth and contrast that prevents it from being a perfect 5.", "elapsed_s": 0.4174692630767822, "attempts": 1}
87
+ {"name": "DALLE2_normal_284.jpg", "mos": 3.593502309, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean and sharp details, although there is a slight vignette effect which slightly reduces the overall quality. The lighting is well-balanced, and the subject is in focus.", "elapsed_s": 0.38512134552001953, "attempts": 1}
88
+ {"name": "xl2.2_normal_274.jpg", "mos": 3.628001993, "score": 4.0, "raw": "4 The image is clear and sharp, with good color saturation and contrast. The details of the train and the surrounding environment are well-defined, and there are no visible compression artifacts or noise.", "elapsed_s": 0.3497350215911865, "attempts": 1}
89
+ {"name": "sd1.5_normal_231.jpg", "mos": 3.64048937, "score": 4.0, "raw": "4 The image is of high quality with clean, sharp details and no visible noise or compression artifacts. The lion's fur and facial features are well-defined, and the lighting enhances the texture and depth of the image.", "elapsed_s": 0.3487861156463623, "attempts": 1}
90
+ {"name": "sd1.5_lowstep_242.jpg", "mos": 3.671121754, "score": 4.0, "raw": "4 The image is clean and sharp with no visible noise or compression artifacts. The details in the room and the reflections in the windows are clear, indicating a high quality image.", "elapsed_s": 0.33315515518188477, "attempts": 1}
91
+ {"name": "sd1.5_highcorr_002.jpg", "mos": 3.688435461, "score": 3.0, "raw": "3 The image is clear and the details are distinguishable, but there is a slight lack of sharpness and the background appears a bit blurry, which slightly reduces the overall quality.", "elapsed_s": 0.3113119602203369, "attempts": 1}
92
+ {"name": "sd1.5_highcorr_121.jpg", "mos": 3.744508689, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, vibrant colors, and no visible noise or compression artifacts. The focus is on the cat's face, and the background is softly blurred, which enhances the subject.", "elapsed_s": 0.3593919277191162, "attempts": 1}
93
+ {"name": "midjourney_normal_005.jpg", "mos": 3.773032655, "score": 4.0, "raw": "4 The image is high quality with clean lines and sharp details, but there is a slight vignette effect which slightly reduces the overall quality.", "elapsed_s": 0.29424619674682617, "attempts": 1}
94
+ {"name": "xl2.2_normal_047.jpg", "mos": 3.800500414, "score": 3.0, "raw": "3 The image is clear and the subject is well-defined, but there is a slight graininess and the contrast is not very high, which slightly reduces the overall quality.", "elapsed_s": 0.3358943462371826, "attempts": 1}
95
+ {"name": "xl2.2_normal_129.jpg", "mos": 3.825753384, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, but there is a slight softness in the lighting which might be considered a minor flaw.", "elapsed_s": 0.34060096740722656, "attempts": 1}
96
+ {"name": "sd1.5_normal_139.jpg", "mos": 3.897509797, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and some noise, which prevents it from being a perfect 5. The composition is visually appealing, but the lack of sharpness and some noise detract from its quality.", "elapsed_s": 0.42203378677368164, "attempts": 1}
97
+ {"name": "midjourney_normal_170.jpg", "mos": 3.923239841, "score": 4.0, "raw": "4 The image is visually appealing with vibrant colors and a clear focus on the butterflies. The background is slightly blurred, which helps to emphasize the butterflies, and the lighting is soft and natural, contributing to the overall high-quality appearance. However, there are some minor artifacts and slight noise, which prevent it from being a perfect 5.", "elapsed_s": 0.49933528900146484, "attempts": 1}
98
+ {"name": "sd1.5_normal_009.jpg", "mos": 3.986962403, "score": 4.0, "raw": "4 The image is high quality with clean lines and sharp details, but the black and white format and the subject's expression add a certain artistic quality that might be seen as slightly less than perfect for a strictly high-quality rating.", "elapsed_s": 0.38509106636047363, "attempts": 1}
99
+ {"name": "xl2.2_normal_144.jpg", "mos": 4.106196029, "score": 4.0, "raw": "4 The image is of high quality with clean and sharp details, minimal noise, and no visible compression artifacts or blurring. The subject is well-composed and the lighting is even, enhancing the overall perception of quality.", "elapsed_s": 0.3893461227416992, "attempts": 1}
bench-Q6_K.jsonl ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos": 0.0, "score": 1.0, "raw": "1. The image is completely black, indicating no discernible content or detail. This suggests severe degradation, with no visual information to assess quality.", "elapsed_s": 0.35254573822021484, "attempts": 1}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos": 0.195283431, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and a lack of discernible details, making it difficult to identify any specific features or content.", "elapsed_s": 0.2557518482208252, "attempts": 1}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos": 0.339513003, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or content. The lack of focus and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.25368165969848633, "attempts": 1}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos": 0.550374317, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or content. The lack of clarity and sharpness indicates a very low perceptual quality.", "elapsed_s": 0.25897884368896484, "attempts": 1}
5
+ {"name": "glide_normal_225.jpg", "mos": 0.613396089, "score": 1.0, "raw": "1\nThe image is heavily degraded with significant noise, compression artifacts, and blur, making it difficult to discern any clear details or content.", "elapsed_s": 0.23518109321594238, "attempts": 1}
6
+ {"name": "glide_normal_094.jpg", "mos": 0.678182301, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and a lack of sharpness, making it difficult to discern details.", "elapsed_s": 0.22773957252502441, "attempts": 1}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos": 0.739960598, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or objects. The overall quality is very poor, indicating severe degradation.", "elapsed_s": 0.2611393928527832, "attempts": 1}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos": 0.780698266, "score": 1.0, "raw": "1\nThe image is heavily distorted, with a warped and fragmented appearance, making it difficult to discern any clear details or content. The quality is severely degraded due to the extreme distortion and lack of recognizable features.", "elapsed_s": 0.3044869899749756, "attempts": 1}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos": 0.831522735, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or features, which significantly degrades its perceptual quality.", "elapsed_s": 0.2245326042175293, "attempts": 1}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos": 0.875752826, "score": 2.0, "raw": "2. The image appears to have a high level of noise and lacks sharpness, which affects the overall quality. The details are not clear, and there are visible artifacts that detract from the image's clarity.", "elapsed_s": 0.5570948123931885, "attempts": 1}
11
+ {"name": "glide_normal_280.jpg", "mos": 0.902526954, "score": 2.0, "raw": "2. The image is somewhat blurry and lacks detail, which is typical for low-resolution or compressed images. The lack of sharpness and detail suggests it is not of high quality.", "elapsed_s": 0.6723549365997314, "attempts": 1}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos": 0.940601322, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 0.6740374565124512, "attempts": 1}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos": 1.006207915, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or content. The overall quality is severely degraded.", "elapsed_s": 0.5356814861297607, "attempts": 1}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos": 1.038703499, "score": 3.0, "raw": "3\n\nThe image has a somewhat abstract and painterly quality, which might be intentional, but it also appears to have some level of noise and lack of sharpness. The details are not very clear, and there are some areas that seem to be overexposed or underexposed, which detracts from the overall quality.", "elapsed_s": 0.9260237216949463, "attempts": 1}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos": 1.075025374, "score": 2.0, "raw": "2. The image appears to have a high level of distortion and lacks clarity, with visible artifacts and a lack of sharpness. The colors are vibrant but the overall quality is compromised by the distortion.", "elapsed_s": 0.6175942420959473, "attempts": 1}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos": 1.126728573, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the main subject is still recognizable and the overall composition is discernible.", "elapsed_s": 0.5872085094451904, "attempts": 1}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos": 1.182958257, "score": 1.0, "raw": "1\nThe image is heavily distorted, with a blurred and indistinct face, and the overall quality is very low. The details are not clear, and the image appears to be heavily processed or corrupted.", "elapsed_s": 0.6144711971282959, "attempts": 1}
18
+ {"name": "glide_normal_157.jpg", "mos": 1.269550286, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, but there are some visible artifacts and a lack of sharpness, which prevents it from being rated higher. The colors are somewhat muted, and the overall composition is somewhat abstract, which might be intentional but still affects the perceived quality.", "elapsed_s": 0.702437162399292, "attempts": 1}
19
+ {"name": "DALLE2_normal_268.jpg", "mos": 1.351025623, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks detail, making it difficult to discern specific features or objects. The overall quality is very poor, indicating a significant degradation in perceptual quality.", "elapsed_s": 0.3125641345977783, "attempts": 3}
20
+ {"name": "glide_normal_142.jpg", "mos": 1.391281461, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with vibrant colors and fine detail visible in the petals and stamens. There are no visible compression artifacts or noise, indicating a high perceptual quality.", "elapsed_s": 0.2637479305267334, "attempts": 1}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos": 1.445015122, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern details, and the overall quality is very low.", "elapsed_s": 0.3490021228790283, "attempts": 1}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos": 1.48681785, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of blur and lacks sharpness, which affects its overall quality. The edges are not well-defined, and there is a lack of fine detail that would be expected in a high-quality image. However, the image is not heavily degraded with noise or compression artifacts, and the subject is still recognizable.", "elapsed_s": 0.5417640209197998, "attempts": 1}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos": 1.540771109, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a somewhat painterly quality, which gives it a stylized appearance rather than a high level of detail. The lighting and color are well-balanced, but the lack of sharpness and fine detail suggests it is not of the highest perceptual quality.", "elapsed_s": 0.5563898086547852, "attempts": 1}
24
+ {"name": "glide_normal_066.jpg", "mos": 1.619473192, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which is why it doesn't qualify as high quality. However, the content is still discernible and the main subject is recognizable, which is better than a severely degraded image.", "elapsed_s": 0.44834399223327637, "attempts": 1}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos": 1.711133213, "score": 3.0, "raw": "3\n\nThe image has a high level of detail and clarity, with a clear focus on the subject. However, the artistic style and the presence of blood splatters and drips add a level of distortion that is not typical of high-quality images. The image is not heavily degraded, but the artistic elements slightly reduce its quality from a purely technical standpoint.", "elapsed_s": 0.5721888542175293, "attempts": 1}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos": 1.776898668, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of distortion, with some blurring and a lack of sharpness, which is not ideal for high-quality perception. However, the overall structure and details are still discernible, indicating it is not severely degraded.", "elapsed_s": 0.48015904426574707, "attempts": 1}
27
+ {"name": "sd1.5_normal_068.jpg", "mos": 1.894194533, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and the edges are not perfectly sharp, which slightly reduces its quality from a perfect 5.", "elapsed_s": 0.4597947597503662, "attempts": 1}
28
+ {"name": "sd1.5_normal_186.jpg", "mos": 1.916425889, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible brush strokes and soft edges, which are common in digital paintings. The colors are vibrant, but the overall sharpness and absence of noise or compression artifacts are not at the highest level, hence a rating of 3.", "elapsed_s": 0.518275260925293, "attempts": 1}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos": 1.971039124, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the subject is still recognizable and the details are discernible, indicating it is not severely degraded.", "elapsed_s": 0.46799254417419434, "attempts": 1}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos": 2.004546739, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and vibrant colors, which are characteristic of high-quality astronomical images. However, there is a slight presence of noise and graininess, which slightly reduces the overall quality from a perfect 5. The image is not severely degraded, and the details are still quite clear and distinguishable.", "elapsed_s": 0.635002613067627, "attempts": 1}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos": 2.03716536, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and sharp edges, but there is a slight lack of depth and the lighting seems a bit flat, which might slightly reduce the overall quality. However, it is not severely degraded and the image is clean and artifact-free.", "elapsed_s": 0.5513458251953125, "attempts": 1}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos": 2.075576292, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a somewhat dreamy quality, which might be intentional for artistic effect. However, the lack of sharpness and the presence of what appears to be noise or graininess suggest it is not of high quality. The lighting and color are well-balanced, but the overall clarity is not as high as it could be.", "elapsed_s": 0.5952298641204834, "attempts": 1}
33
+ {"name": "glide_normal_108.jpg", "mos": 2.138862877, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with sharp details and clear textures, but there is a slight yellow tint that might be a result of the background or lighting, which slightly detracts from the overall quality. However, the image is not severely degraded and the details are well-defined.", "elapsed_s": 0.5372004508972168, "attempts": 1}
34
+ {"name": "xl2.2_normal_171.jpg", "mos": 2.18011346, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with vibrant colors and smooth lines, indicating a high-quality illustration. However, there is a slight softness in the edges and a lack of fine detail that might be considered a minor degradation, hence a score of 4.", "elapsed_s": 0.527519941329956, "attempts": 1}
35
+ {"name": "sd1.5_normal_080.jpg", "mos": 2.210104633, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and vibrant colors. However, there is a slight lack of sharpness and some minor noise, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.5156941413879395, "attempts": 1}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos": 2.293494507, "score": 2.0, "raw": "2\nThe image is blurry and lacks sharpness, which affects its overall quality. The details are not clear, and the image appears to be out of focus, which is why it is not rated higher.", "elapsed_s": 0.5405805110931396, "attempts": 1}
37
+ {"name": "sd1.5_normal_216.jpg", "mos": 2.326531297, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details of the mirror frame and the reflection are sharp, indicating a high perceptual quality.", "elapsed_s": 0.39322423934936523, "attempts": 1}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos": 2.36946733, "score": 3.0, "raw": "3\n\nThe image has a moderate level of blur and lacks sharpness, which affects its overall quality. The lighting and color are somewhat muted, and there is a lack of fine detail that would typically be present in a high-quality image. The subject is not clearly defined, and the background is not distinct, which further contributes to the lower quality rating.", "elapsed_s": 0.637160062789917, "attempts": 1}
39
+ {"name": "DALLE2_normal_223.jpg", "mos": 2.40326321, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus and some noise, which slightly degrades its quality. The colors are muted and the details are not very sharp, which is why it doesn't quite reach a 5. However, the image is not severely degraded and the overall composition is clear.", "elapsed_s": 0.46122002601623535, "attempts": 1}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos": 2.442957962, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus and some motion blur, which slightly degrades the sharpness and detail. However, the colors are vibrant and the subject is recognizable, indicating a moderate level of quality.", "elapsed_s": 0.4224250316619873, "attempts": 1}
41
+ {"name": "DALLE2_normal_018.jpg", "mos": 2.476222723, "score": 3.0, "raw": "3\n\nThe image appears to have some compression artifacts and a lack of sharpness, which slightly degrades its quality. However, the subject and the main elements are still discernible.", "elapsed_s": 0.35974812507629395, "attempts": 1}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos": 2.491680335, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and compression artifacts, which slightly degrade the overall quality. The text and image details are somewhat readable, but not as crisp as they could be.", "elapsed_s": 0.46345043182373047, "attempts": 1}
43
+ {"name": "xl2.2_normal_178.jpg", "mos": 2.518413241, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a well-defined subject and background. The lighting and colors are vibrant, and there are no visible artifacts or blurring that would detract from the overall quality. However, the image appears to be digitally manipulated, which slightly reduces its quality from a purely photographic standpoint.", "elapsed_s": 0.5919461250305176, "attempts": 1}
44
+ {"name": "sd1.5_normal_101.jpg", "mos": 2.542752246, "score": 4.0, "raw": "4\n\nThe image appears to have a good level of detail and clarity, with no visible noise or compression artifacts. The lighting is even, and the subject is in focus, which contributes to a high-quality perception. However, the background is somewhat plain and does not add much to the overall quality, which is why it is not a perfect 5.", "elapsed_s": 0.5510883331298828, "attempts": 1}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos": 2.560764083, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with vibrant colors and smooth gradients. There are no visible artifacts or distortions that would typically indicate lower quality. The composition is well-defined, and the image seems to be of good resolution.", "elapsed_s": 0.5628969669342041, "attempts": 1}
46
+ {"name": "xl2.2_normal_221.jpg", "mos": 2.580492981, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and sharp edges, but there is a slight softness in the lighting and the background is not as sharp as the subject. The subject and the goose are in focus, and there are no visible artifacts or noise.", "elapsed_s": 0.5176725387573242, "attempts": 1}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos": 2.610261314, "score": 3.0, "raw": "3\n\nThe image appears to have some distortion and artifacts, particularly around the edges of the subject and the background, which suggests it may have been manipulated or is of low quality. The colors are vibrant, but the overall clarity and sharpness are not high.", "elapsed_s": 0.44709157943725586, "attempts": 1}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos": 2.64254653, "score": 3.0, "raw": "3\n\nThe image has a moderate level of detail and clarity, with some areas appearing slightly pixelated or lacking in sharpness. The colors are vibrant, but the overall image quality is not the highest, indicating some degradation in the perceptual quality.", "elapsed_s": 0.5376901626586914, "attempts": 1}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos": 2.660597966, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and vibrant colors, but there is a slight softness in the edges and some minor noise, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.4296138286590576, "attempts": 1}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos": 2.674859949, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there are some visible artifacts and a slightly grainy texture, which slightly detract from its quality. The overall composition and clarity are good, but not perfect.", "elapsed_s": 0.5529334545135498, "attempts": 1}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos": 2.692443672, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean details and sharp edges, though there might be a slight softness in the lighting which could be considered a minor flaw. The character's features and armor details are well-defined, suggesting a good level of quality.", "elapsed_s": 0.5011169910430908, "attempts": 1}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos": 2.731010208, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a smooth gradient and well-defined edges. The colors are vibrant and the overall composition is visually appealing. However, there is a slight hint of noise or graininess, which slightly reduces the quality from a perfect 5.", "elapsed_s": 0.6141159534454346, "attempts": 1}
53
+ {"name": "xl2.2_normal_101.jpg", "mos": 2.747600946, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and contrast are well-balanced, and the subject is in focus, indicating a high-quality image.", "elapsed_s": 0.5383110046386719, "attempts": 1}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos": 2.782759734, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details of the equipment and the individuals are sharp, indicating a high-quality image.", "elapsed_s": 0.36428308486938477, "attempts": 1}
55
+ {"name": "xl2.2_normal_103.jpg", "mos": 2.803217798, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and shading are well-executed, giving the image a clean and sharp appearance. The textures on the rock and the water are distinct, and the overall composition is well-balanced.", "elapsed_s": 0.501378059387207, "attempts": 1}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos": 2.841733922, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good focus on the subject, the mouse. The lighting is even, and there are no visible artifacts or noise. The background is slightly out of focus, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 0.48209214210510254, "attempts": 1}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos": 2.869008944, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a painterly quality, which gives it a certain artistic appeal but also results in a lack of sharpness and detail that would be expected in a high-quality image. The colors are muted and the overall composition is somewhat abstract, which might be intentional for artistic effect, but it does not contribute to the image's clarity or sharpness.", "elapsed_s": 0.5382645130157471, "attempts": 1}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos": 2.886258786, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with smooth gradients and a lack of visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a high-quality visual experience. However, the image is not perfect and may have slight imperfections that prevent it from being rated a 5.", "elapsed_s": 0.6459360122680664, "attempts": 1}
59
+ {"name": "DALLE2_normal_218.jpg", "mos": 2.908664621, "score": 3.0, "raw": "3\n\nThe image has a moderate level of noise and graininess, which slightly degrades the overall quality. The lighting is uneven, and the details are not very sharp, but the composition and elements are discernible.", "elapsed_s": 0.5006189346313477, "attempts": 1}
60
+ {"name": "sd1.5_normal_003.jpg", "mos": 2.92075847, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with vibrant colors and clear details, but there is a slight softness in the edges of the spiral structure, which might be due to the nature of the astronomical image or the resolution. However, it does not have any visible noise, compression artifacts, or blurring that would significantly degrade its quality.", "elapsed_s": 0.5396687984466553, "attempts": 1}
61
+ {"name": "xl2.2_normal_160.jpg", "mos": 2.941741401, "score": 3.0, "raw": "3\n\nThe image has a clear subject and a distinct background, but the lighting and reflections create some glare and the image appears slightly overexposed in certain areas, which slightly reduces its quality. The details are not entirely sharp, and there is a slight lack of clarity in the edges of the subject and the background.", "elapsed_s": 0.4889826774597168, "attempts": 1}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos": 2.966953132, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 0.34277868270874023, "attempts": 1}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos": 2.975194143, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and vibrant colors. The details in the character's attire and the background are sharp, and there are no visible artifacts or blurring that would typically indicate lower quality. However, the image does not have the absolute highest level of detail and clarity that would earn a perfect score of 5.", "elapsed_s": 0.6229100227355957, "attempts": 1}
64
+ {"name": "sd1.5_normal_129.jpg", "mos": 3.001476926, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines, sharp details, and a lack of visible noise or compression artifacts. The lighting is soft and even, contributing to the overall clarity and natural appearance of the subject.", "elapsed_s": 0.547743558883667, "attempts": 1}
65
+ {"name": "xl2.2_normal_164.jpg", "mos": 3.033265998, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with clear details and vibrant colors. However, there is a slight softness in the edges and a lack of fine detail that might be expected in a higher quality image. The overall composition and lighting are well-executed, contributing to a pleasant visual experience.", "elapsed_s": 0.526867151260376, "attempts": 1}
66
+ {"name": "sd1.5_normal_155.jpg", "mos": 3.062007692, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible in the tuk-tuk and the surrounding environment. The colors are vibrant, and there is no noticeable noise or compression artifacts. However, the image could be slightly sharper, which would elevate the quality to a perfect 5.", "elapsed_s": 0.5421104431152344, "attempts": 1}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos": 3.091620808, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with well-defined colors and details. However, there is a slight softness in the edges and a lack of fine detail that might be expected in a high-quality image, which prevents it from reaching a perfect score.", "elapsed_s": 0.4706141948699951, "attempts": 1}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos": 3.108253189, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and color are well-balanced, and the overall composition is visually appealing. However, the image is not perfect, as there is a slight blur at the edges, which slightly reduces its quality from a perfect 5.", "elapsed_s": 0.535402774810791, "attempts": 1}
69
+ {"name": "xl2.2_normal_100.jpg", "mos": 3.135881857, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting is well-balanced, and there are no visible artifacts or noise. The composition is also well-executed, contributing to the overall high perceptual quality.", "elapsed_s": 0.4584996700286865, "attempts": 1}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos": 3.150815738, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a well-defined subject (the jellyfish) and a rich, atmospheric background. The lighting and color are well-balanced, and there are no visible artifacts or distortions. However, the image appears to be slightly stylized or digitally manipulated, which might slightly lower the score to 4 instead of 5.", "elapsed_s": 0.609520673751831, "attempts": 1}
71
+ {"name": "DALLE2_normal_212.jpg", "mos": 3.169097903, "score": 4.0, "raw": "4\n\nThe image is clear and the details of the flowers are well-defined, with no visible noise or compression artifacts. The lighting is even, and the colors are vibrant, contributing to a high-quality appearance.", "elapsed_s": 0.42505741119384766, "attempts": 1}
72
+ {"name": "midjourney_normal_032.jpg", "mos": 3.195617381, "score": 4.0, "raw": "4\n\nThe image appears to be of good quality with a painterly style, but there is a slight lack of sharpness and detail, which is characteristic of the artistic style rather than a degradation in quality. The colors are well-defined, and the subject is clear, indicating a high-quality image in terms of its artistic representation.", "elapsed_s": 0.570798397064209, "attempts": 1}
73
+ {"name": "xl2.2_normal_083.jpg", "mos": 3.214375205, "score": 3.0, "raw": "3\n\nThe image has a stylized, artistic quality with a clear subject (the Eiffel Tower) and distinct color contrasts. However, the red splatter effect and the lack of fine detail suggest it is not a photograph but rather a digital illustration or painting. The edges are somewhat soft, and the overall image lacks the crispness and clarity typically associated with high-quality images.", "elapsed_s": 0.6204729080200195, "attempts": 1}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos": 3.231255627, "score": 4.0, "raw": "4\n\nThe image is clear and the details of the frog and the hat are well-defined. The lighting is good and the colors are vibrant, which contributes to a high-quality appearance. However, there is a slight softness in the edges, which prevents it from being a perfect 5.", "elapsed_s": 0.43985462188720703, "attempts": 1}
75
+ {"name": "xl2.2_normal_182.jpg", "mos": 3.270286787, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with no visible noise or compression artifacts. The colors are vibrant and the lines are sharp, indicating a high-quality image.", "elapsed_s": 0.4507267475128174, "attempts": 1}
76
+ {"name": "midjourney_normal_185.jpg", "mos": 3.30238721, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with no visible noise, compression artifacts, or blur. The lines are sharp, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.44774889945983887, "attempts": 1}
77
+ {"name": "xl2.2_normal_033.jpg", "mos": 3.344956193, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with good clarity and sharpness. The details in the clothing and the background are well-defined, and there are no visible compression artifacts or noise. The lighting is even, and the subject is in focus, which contributes to the overall high perceptual quality of the image.", "elapsed_s": 0.6492455005645752, "attempts": 1}
78
+ {"name": "sd1.5_normal_293.jpg", "mos": 3.374329815, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, but there is a slight softness in the lighting and shadows that might be considered a minor flaw, bringing it down to a 4.", "elapsed_s": 0.5224204063415527, "attempts": 1}
79
+ {"name": "midjourney_normal_179.jpg", "mos": 3.387959109, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with vibrant colors and a well-defined underwater scene. The lighting and reflections are well-handled, and there are no visible artifacts or blurring that would detract from the overall quality. However, it does not quite reach the highest possible score due to the slight presence of noise and the somewhat artificial appearance of the underwater environment, which might be due to the nature of the image or the post-processing involved.", "elapsed_s": 0.7040774822235107, "attempts": 1}
80
+ {"name": "xl2.2_normal_121.jpg", "mos": 3.424268421, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with vibrant colors and well-defined edges. However, there is a slight softness in the fur texture and the background leaves, which might be due to the artistic style rather than degradation. The overall quality is good, but not perfect.", "elapsed_s": 0.6097891330718994, "attempts": 1}
81
+ {"name": "midjourney_normal_200.jpg", "mos": 3.455503573, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with vibrant colors and smooth gradients. The lines are clean and there are no visible artifacts or blurring, indicating a high perceptual quality.", "elapsed_s": 0.505016565322876, "attempts": 1}
82
+ {"name": "xl2.2_normal_114.jpg", "mos": 3.472753415, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good focus on the subject. The details of the donut and the glaze are sharp, and there is no visible noise or compression artifacts. The background is slightly blurred, which helps to emphasize the donut, but this is a common photographic technique and does not detract from the overall quality of the image.", "elapsed_s": 0.5453596115112305, "attempts": 1}
83
+ {"name": "xl2.2_normal_211.jpg", "mos": 3.502054974, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with a soft focus that adds to the aesthetic quality. The lighting is well-balanced, and there are no visible artifacts or noise that would detract from the overall quality. The subject is in focus, and the composition is pleasing, which contributes to a high-quality image.", "elapsed_s": 0.6292240619659424, "attempts": 1}
84
+ {"name": "xl2.2_normal_014.jpg", "mos": 3.516316957, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail and color, but there is a slight softness in the background which slightly reduces the overall quality from a perfect 5.", "elapsed_s": 0.40963077545166016, "attempts": 1}
85
+ {"name": "sd1.5_lowcorr_173.jpg", "mos": 3.544604966, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The textures of the stones, plants, and the wooden structure are well-defined, and the lighting is even, contributing to the overall quality of the image.", "elapsed_s": 0.4593822956085205, "attempts": 1}
86
+ {"name": "sd1.5_lowcorr_099.jpg", "mos": 3.576252467, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, suggesting it is not heavily degraded. However, there is a slight lack of depth and the lighting seems a bit flat, which might slightly lower the score. The image is not compressed or noisy, and the details are well-defined.", "elapsed_s": 0.5615217685699463, "attempts": 1}
87
+ {"name": "DALLE2_normal_284.jpg", "mos": 3.593502309, "score": 4.0, "raw": "4\n\nThe image appears to have a high level of detail and clarity, with no visible noise or compression artifacts. The lighting is well-balanced, and the subject is in focus, which contributes to the overall quality of the image.", "elapsed_s": 0.4681375026702881, "attempts": 1}
88
+ {"name": "xl2.2_normal_274.jpg", "mos": 3.628001993, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with no visible noise or compression artifacts. The lighting and color saturation are well-balanced, and the subject is in focus, making it a high-quality image.", "elapsed_s": 0.5048353672027588, "attempts": 1}
89
+ {"name": "sd1.5_normal_231.jpg", "mos": 3.64048937, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and no visible noise or compression artifacts. The lighting and color are well-balanced, contributing to the overall perception of a high-quality image.", "elapsed_s": 0.45318603515625, "attempts": 1}
90
+ {"name": "sd1.5_lowstep_242.jpg", "mos": 3.671121754, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines, sharp details, and no visible noise or compression artifacts. The lighting is even, and the colors are well-defined, contributing to a visually pleasing and professional appearance.", "elapsed_s": 0.48531579971313477, "attempts": 1}
91
+ {"name": "sd1.5_highcorr_002.jpg", "mos": 3.688435461, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible noise and artifacts, particularly around the edges of the astronaut and the planets. The colors are vibrant, but the overall sharpness and clarity are not at the highest level, which is why it is not rated as a 5.", "elapsed_s": 0.503394365310669, "attempts": 1}
92
+ {"name": "sd1.5_highcorr_121.jpg", "mos": 3.744508689, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the cat's fur and the leaf. The colors are vibrant, and there is no visible noise or compression artifacts. However, the background is slightly out of focus, which is a common technique to draw attention to the subject but it slightly reduces the overall quality from a perfect 5.", "elapsed_s": 0.6268117427825928, "attempts": 1}
93
+ {"name": "midjourney_normal_005.jpg", "mos": 3.773032655, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and no visible noise or compression artifacts. The colors are vibrant, and the subject is well-defined against the background, indicating a high-quality image.", "elapsed_s": 0.5633227825164795, "attempts": 1}
94
+ {"name": "xl2.2_normal_047.jpg", "mos": 3.800500414, "score": 3.0, "raw": "3\n\nThe image appears to be of moderate quality, with some graininess and lack of sharpness, which is common for older photographs. The details are not very crisp, and there are some visible artifacts, particularly in the lighting and contrast. The subject is recognizable, but the overall image quality is not high.", "elapsed_s": 0.5692627429962158, "attempts": 1}
95
+ {"name": "xl2.2_normal_129.jpg", "mos": 3.825753384, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clean and sharp appearance. The lighting is well-balanced, and there are no visible artifacts or noise. The details in the subject's face are clear, and the background is softly blurred, which helps to emphasize the subject.", "elapsed_s": 0.44423723220825195, "attempts": 1}
96
+ {"name": "sd1.5_normal_139.jpg", "mos": 3.897509797, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and some noise, which slightly reduces its quality from a perfect 5. The composition and lighting are well-executed, making it a strong 4.", "elapsed_s": 0.43340253829956055, "attempts": 1}
97
+ {"name": "midjourney_normal_170.jpg", "mos": 3.923239841, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, with a soft focus that adds to the dreamy quality. The butterflies and background are well-defined, and there are no visible artifacts or noise. However, the slight softness might be considered a slight degradation from a perfect score.", "elapsed_s": 0.5536637306213379, "attempts": 1}
98
+ {"name": "sd1.5_normal_009.jpg", "mos": 3.986962403, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clear focus on the subject, sharp details, and a high level of contrast. The lighting and shadows are well-defined, and there are no visible artifacts or noise that would detract from the overall quality.", "elapsed_s": 0.5129833221435547, "attempts": 1}
99
+ {"name": "xl2.2_normal_144.jpg", "mos": 4.106196029, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with a clean and sharp appearance. The details in the subject's hair, clothing, and jewelry are well-defined, and the background is slightly blurred, which helps to emphasize the subject. There are no visible noise, compression artifacts, or blurring that would detract from the overall quality of the image.", "elapsed_s": 0.7439489364624023, "attempts": 1}
bench-Q8_0.jsonl ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "glide_normal_263.jpg", "mos": 0.0, "score": 1.0, "raw": "1. The image is completely black, indicating no discernible content or details. This suggests severe degradation, with no visual information to assess quality.", "elapsed_s": 0.42795372009277344, "attempts": 1}
2
+ {"name": "AttnGAN_normal_130.jpg", "mos": 0.195283431, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and a lack of discernible details, making it difficult to identify any specific content or features.", "elapsed_s": 0.27666449546813965, "attempts": 1}
3
+ {"name": "AttnGAN_normal_225.jpg", "mos": 0.339513003, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any clear details or content. The lack of focus and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.2867302894592285, "attempts": 1}
4
+ {"name": "sd1.5_highcorr_037.jpg", "mos": 0.550374317, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or content. The lack of clarity and sharpness significantly degrades the perceptual quality.", "elapsed_s": 0.27996015548706055, "attempts": 1}
5
+ {"name": "glide_normal_225.jpg", "mos": 0.613396089, "score": 1.0, "raw": "1\nThe image is heavily degraded with significant noise, compression artifacts, and blur, making it difficult to discern any clear details or content.", "elapsed_s": 0.25064826011657715, "attempts": 1}
6
+ {"name": "glide_normal_094.jpg", "mos": 0.678182301, "score": 1.0, "raw": "1\nThe image is heavily degraded, with significant noise and a lack of sharpness, making it difficult to discern details.", "elapsed_s": 0.23379254341125488, "attempts": 1}
7
+ {"name": "AttnGAN_normal_293.jpg", "mos": 0.739960598, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or objects. The lack of sharpness and clarity suggests a low perceptual quality.", "elapsed_s": 0.2978236675262451, "attempts": 1}
8
+ {"name": "AttnGAN_normal_161.jpg", "mos": 0.780698266, "score": 1.0, "raw": "1\nThe image is heavily distorted, with visible artifacts and a lack of clarity, making it difficult to discern details.", "elapsed_s": 0.2273728847503662, "attempts": 1}
9
+ {"name": "midjourney_lowstep_264.jpg", "mos": 0.831522735, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern any details or content. The lack of clarity and sharpness significantly degrades the perceptual quality.", "elapsed_s": 0.28820323944091797, "attempts": 1}
10
+ {"name": "AttnGAN_normal_190.jpg", "mos": 0.875752826, "score": 2.0, "raw": "2\n\nThe image appears to have a high level of noise and lacks sharpness, which are common issues in low-quality digital images. The details are not clear, and there is a noticeable lack of fine detail that would be present in a high-quality image.", "elapsed_s": 0.39647984504699707, "attempts": 1}
11
+ {"name": "glide_normal_280.jpg", "mos": 0.902526954, "score": 2.0, "raw": "2. The image is somewhat blurry and lacks detail, which is typical for low-resolution or compressed images. The lack of sharpness and detail suggests it is not of high quality.", "elapsed_s": 0.29959845542907715, "attempts": 1}
12
+ {"name": "AttnGAN_normal_172.jpg", "mos": 0.940601322, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and there are no severe artifacts or blurring present.", "elapsed_s": 0.3332939147949219, "attempts": 1}
13
+ {"name": "midjourney_lowstep_068.jpg", "mos": 1.006207915, "score": 1.0, "raw": "1\nThe image is heavily blurred and lacks clear details, making it difficult to discern specific features or content. The lack of sharpness and clarity significantly degrades the perceptual quality.", "elapsed_s": 0.3099856376647949, "attempts": 1}
14
+ {"name": "AttnGAN_normal_114.jpg", "mos": 1.038703499, "score": 3.0, "raw": "3\n\nThe image has a somewhat abstract and painterly quality, which might be intentional, but it also appears to have some level of noise or distortion, particularly in the background and the details of the figure. The overall clarity and sharpness are not high, which is why it doesn't quite reach a 5.", "elapsed_s": 0.6769933700561523, "attempts": 1}
15
+ {"name": "AttnGAN_normal_262.jpg", "mos": 1.075025374, "score": 1.0, "raw": "1\nThe image exhibits heavy noise, compression artifacts, and a lack of sharpness, making it difficult to discern clear details or content.", "elapsed_s": 0.4604148864746094, "attempts": 1}
16
+ {"name": "AttnGAN_normal_245.jpg", "mos": 1.126728573, "score": 2.0, "raw": "2\n\nThe image appears to have a moderate level of noise and blurriness, which affects the overall clarity and detail. The edges are not sharp, and there is a lack of fine detail that would be expected in a high-quality image.", "elapsed_s": 0.5579328536987305, "attempts": 1}
17
+ {"name": "AttnGAN_normal_202.jpg", "mos": 1.182958257, "score": 1.0, "raw": "1\nThe image is heavily distorted, with a blurred and indistinct appearance, making it difficult to discern any clear details or features. The overall quality is very poor, indicating severe degradation.", "elapsed_s": 0.4704287052154541, "attempts": 1}
18
+ {"name": "glide_normal_157.jpg", "mos": 1.269550286, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible noise and artifacts, particularly around the edges of the object. The colors are somewhat muted, and there is a lack of sharpness that prevents it from being rated higher.", "elapsed_s": 0.6132681369781494, "attempts": 1}
19
+ {"name": "DALLE2_normal_268.jpg", "mos": 1.351025623, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern specific details or features. The lack of sharpness and clarity suggests a low perceptual quality.", "elapsed_s": 0.5306763648986816, "attempts": 1}
20
+ {"name": "glide_normal_142.jpg", "mos": 1.391281461, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with vibrant colors and no visible noise or compression artifacts. The details of the flower's structure are well-defined, indicating a high perceptual quality.", "elapsed_s": 0.5057659149169922, "attempts": 1}
21
+ {"name": "midjourney_lowstep_006.jpg", "mos": 1.445015122, "score": 1.0, "raw": "1\nThe image is heavily blurred, making it difficult to discern details, and the overall quality is very low.", "elapsed_s": 0.5345802307128906, "attempts": 1}
22
+ {"name": "midjourney_lowstep_103.jpg", "mos": 1.48681785, "score": 2.0, "raw": "2\n\nThe image is blurry and lacks sharpness, which affects its overall quality. The details are not clear, and the edges are not well-defined, indicating a lower perceptual quality.", "elapsed_s": 0.522895097732544, "attempts": 1}
23
+ {"name": "midjourney_lowstep_140.jpg", "mos": 1.540771109, "score": 3.0, "raw": "3\n\nThe image has a soft, painterly quality with a warm color palette, which gives it a certain charm. However, the details are not very sharp, and there is a slight blur, which prevents it from being rated higher. The lighting and composition are well-executed, but the lack of sharpness brings it down to a 3.", "elapsed_s": 0.7348649501800537, "attempts": 1}
24
+ {"name": "glide_normal_066.jpg", "mos": 1.619473192, "score": 3.0, "raw": "3\n\nThe image is somewhat blurry and the details are not very sharp, which affects the overall quality. However, the colors are vibrant and the subject is recognizable, which slightly elevates the rating above a 1.", "elapsed_s": 0.5165982246398926, "attempts": 1}
25
+ {"name": "sd1.5_lowstep_229.jpg", "mos": 1.711133213, "score": 3.0, "raw": "3\n\nThe image has a high level of detail and clarity, with a clean and sharp appearance. However, the subject matter is highly stylized and surreal, which may not be indicative of the image's technical quality. The color palette and composition are well-executed, but the subject's expression and the blood-like substance on the face add an element of artistic interpretation that could be seen as a departure from traditional high-quality standards.", "elapsed_s": 0.9591643810272217, "attempts": 1}
26
+ {"name": "midjourney_lowstep_261.jpg", "mos": 1.776898668, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of noise and lacks sharpness, which slightly degrades its quality. However, the overall structure and details are still discernible, indicating it is not severely degraded.", "elapsed_s": 0.5955295562744141, "attempts": 1}
27
+ {"name": "sd1.5_normal_068.jpg", "mos": 1.894194533, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and the edges are not perfectly sharp, which slightly reduces its quality from a perfect 5.", "elapsed_s": 0.6189990043640137, "attempts": 1}
28
+ {"name": "sd1.5_normal_186.jpg", "mos": 1.916425889, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some softness in the edges and a slightly blurred background. There are no obvious signs of heavy noise, compression artifacts, or blurriness that would significantly degrade the quality. However, the lack of sharpness and the presence of a soft focus suggest it is not in the highest quality category.", "elapsed_s": 0.66792893409729, "attempts": 1}
29
+ {"name": "sd1.5_lowcorr_141.jpg", "mos": 1.971039124, "score": 3.0, "raw": "3\n\nThe image is somewhat blurry and lacks sharpness, which affects its overall quality. The colors appear muted, and there is a lack of fine detail that would be expected in a high-quality image. The framing and composition are clear, but the technical aspects of the image itself are not of the highest quality.", "elapsed_s": 0.7650983333587646, "attempts": 1}
30
+ {"name": "sd1.5_lowstep_003.jpg", "mos": 2.004546739, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of color saturation and clarity. The stars and nebulae are well-defined, and there are no visible artifacts or blurriness. However, the image appears to be a composite or a heavily processed photograph, which might slightly reduce the score.", "elapsed_s": 0.6339643001556396, "attempts": 1}
31
+ {"name": "sd1.5_lowstep_195.jpg", "mos": 2.03716536, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with no visible noise or compression artifacts. The details in the character's outfit and the weapon are well-defined, indicating a high-quality render.", "elapsed_s": 0.527179479598999, "attempts": 1}
32
+ {"name": "midjourney_lowstep_235.jpg", "mos": 2.075576292, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a dreamy quality, which might be intentional for artistic effect. However, the lack of sharpness and the presence of some noise or softness in the details suggest it is not of high quality. The lighting and color are well-balanced, but the overall sharpness is below the ideal for a high-quality image.", "elapsed_s": 0.6355671882629395, "attempts": 1}
33
+ {"name": "glide_normal_108.jpg", "mos": 2.138862877, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the feathers and the bird's features. The background is a gradient of yellow, which does not detract from the main subject. There are no visible artifacts or compression issues, indicating a high perceptual quality.", "elapsed_s": 0.616762638092041, "attempts": 1}
34
+ {"name": "xl2.2_normal_171.jpg", "mos": 2.18011346, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with vibrant colors and smooth lines. However, there is a slight softness in the edges, which prevents it from being rated as a perfect 5.", "elapsed_s": 0.65787672996521, "attempts": 1}
35
+ {"name": "sd1.5_normal_080.jpg", "mos": 2.210104633, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with no visible noise or compression artifacts. The details in the character's face and hair are well-defined, indicating a high-quality image.", "elapsed_s": 0.5435221195220947, "attempts": 1}
36
+ {"name": "midjourney_lowstep_004.jpg", "mos": 2.293494507, "score": 2.0, "raw": "2. The image is blurry and lacks sharpness, which affects the overall quality. The details of the armor are not clear, and there is a lack of focus that detracts from the image's clarity.", "elapsed_s": 0.881641149520874, "attempts": 1}
37
+ {"name": "sd1.5_normal_216.jpg", "mos": 2.326531297, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with no visible noise or compression artifacts. The details of the mirror frame and the reflection are well-defined, indicating a high-quality image.", "elapsed_s": 0.5366344451904297, "attempts": 1}
38
+ {"name": "midjourney_lowstep_294.jpg", "mos": 2.36946733, "score": 3.0, "raw": "3\n\nThe image has a moderate level of blur and lacks sharpness, which affects the overall quality. The lighting and color are somewhat muted, and there is a lack of fine detail that would be present in a high-quality image. However, the image is not heavily degraded, and the subject is still recognizable.", "elapsed_s": 0.6667828559875488, "attempts": 1}
39
+ {"name": "DALLE2_normal_223.jpg", "mos": 2.40326321, "score": 3.0, "raw": "3\n\nThe image appears to have a soft focus and a somewhat muted color palette, which gives it a painterly quality. While the details are not sharp, the overall composition and the interplay of light and shadow are well-executed, suggesting a moderate level of perceptual quality.", "elapsed_s": 0.856346845626831, "attempts": 1}
40
+ {"name": "midjourney_lowstep_132.jpg", "mos": 2.442957962, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of blurriness and lacks sharpness, which affects the overall quality. The lighting is even, and there are no obvious compression artifacts or noise, but the lack of detail and focus brings it down from a higher rating.", "elapsed_s": 0.6610889434814453, "attempts": 1}
41
+ {"name": "DALLE2_normal_018.jpg", "mos": 2.476222723, "score": 3.0, "raw": "3\n\nThe image is clear and the details are visible, but there is a slight blur and the lighting is not optimal, which slightly reduces the quality.", "elapsed_s": 0.621588945388794, "attempts": 1}
42
+ {"name": "sd1.5_highcorr_046.jpg", "mos": 2.491680335, "score": 3.0, "raw": "3 The image is somewhat clear but has a slightly grainy texture and the text appears to be distorted, which affects the overall quality.", "elapsed_s": 0.45157909393310547, "attempts": 1}
43
+ {"name": "xl2.2_normal_178.jpg", "mos": 2.518413241, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a clean and sharp appearance. The lighting and colors are well-balanced, and there are no visible artifacts or noise. The composition is also well-executed, making it a high-quality image.", "elapsed_s": 0.8286399841308594, "attempts": 1}
44
+ {"name": "sd1.5_normal_101.jpg", "mos": 2.542752246, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with no visible noise or compression artifacts. The details in the person's skin texture and clothing are sharp, indicating a high-quality image.", "elapsed_s": 0.6225788593292236, "attempts": 1}
45
+ {"name": "sd1.5_lowstep_115.jpg", "mos": 2.560764083, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with no visible noise or compression artifacts. The colors are well-defined, and the details in the clouds and waves are sharp, indicating a high perceptual quality.", "elapsed_s": 0.6196126937866211, "attempts": 1}
46
+ {"name": "xl2.2_normal_221.jpg", "mos": 2.580492981, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail on the subject and the background. The colors are vibrant, and there are no visible artifacts or blurriness. However, the image appears to be slightly overexposed, which slightly reduces the overall quality.", "elapsed_s": 0.6176762580871582, "attempts": 1}
47
+ {"name": "sd1.5_lowstep_132.jpg", "mos": 2.610261314, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of distortion, with the person's body and the object they are holding appearing to be unnaturally deformed and stretched. This suggests that the image may have been manipulated or is of low quality, resulting in a perceptual quality of 3.", "elapsed_s": 0.6688086986541748, "attempts": 1}
48
+ {"name": "sd1.5_lowcorr_005.jpg", "mos": 2.64254653, "score": 3.0, "raw": "3\n\nThe image has a high level of detail and vibrant colors, but the edges are not perfectly sharp, and there is a slight blurriness, which prevents it from being rated as a high-quality image.", "elapsed_s": 0.5442168712615967, "attempts": 1}
49
+ {"name": "sd1.5_highcorr_156.jpg", "mos": 2.660597966, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with good lighting and color saturation. The details in the clothing and facial features are sharp, and there are no visible artifacts or compression issues. However, the image appears to be a painting, which may not be considered high quality in the context of digital photography.", "elapsed_s": 0.8225152492523193, "attempts": 1}
50
+ {"name": "sd1.5_lowcorr_200.jpg", "mos": 2.674859949, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there are some minor artifacts and a slightly grainy texture that detract from its overall quality. The composition is interesting, but the image could benefit from smoother blending and less noise for a higher rating.", "elapsed_s": 0.7287497520446777, "attempts": 1}
51
+ {"name": "sd1.5_lowstep_249.jpg", "mos": 2.692443672, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines and sharp details, though there is a slight lack of depth and texture that might be due to the stylized nature of the character design. The lighting is even, and there are no visible artifacts or compression issues.", "elapsed_s": 0.8464398384094238, "attempts": 1}
52
+ {"name": "midjourney_lowstep_005.jpg", "mos": 2.731010208, "score": 4.0, "raw": "4\n\nThe image is clear and the details of the dragon are well-defined, with a smooth gradient and no visible noise or compression artifacts. The lighting and color are vibrant, contributing to a high-quality appearance.", "elapsed_s": 0.5077250003814697, "attempts": 1}
53
+ {"name": "xl2.2_normal_101.jpg", "mos": 2.747600946, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with a high level of detail visible in the subject's clothing and the instrument. The lighting and composition are effective, creating a dramatic and professional appearance. However, there is a slight softness to the image that prevents it from being a perfect 5, but it is still of high perceptual quality.", "elapsed_s": 0.6679718494415283, "attempts": 1}
54
+ {"name": "sd1.5_highcorr_167.jpg", "mos": 2.782759734, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible on the equipment and the individuals. The colors are vibrant, and there are no noticeable artifacts or compression issues. However, the image could be slightly sharper, which would elevate the quality to a perfect 5.", "elapsed_s": 0.7203850746154785, "attempts": 1}
55
+ {"name": "xl2.2_normal_103.jpg", "mos": 2.803217798, "score": 4.0, "raw": "4\n\nThe image is relatively clean and sharp, with a clear distinction between the mountain, the water, and the sky. The lighting is even, and there are no visible compression artifacts or noise. However, the image appears to be a digital creation or a highly stylized photograph, which might not be considered \"high quality\" in the traditional sense of a photograph taken with a high-end camera.", "elapsed_s": 0.7729556560516357, "attempts": 1}
56
+ {"name": "sd1.5_lowcorr_034.jpg", "mos": 2.841733922, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good focus on the subject. The lighting is even, and there are no visible artifacts or noise. The background is slightly blurred, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 0.6393687725067139, "attempts": 1}
57
+ {"name": "midjourney_lowstep_281.jpg", "mos": 2.869008944, "score": 3.0, "raw": "3\n\nThe image has a soft focus and a painterly quality, which gives it a certain artistic appeal but also results in a lack of sharpness and detail that would be expected in a high-quality image. The colors are muted and the overall composition is somewhat abstract, which might be intentional for artistic effect, but it does not contribute to the image's clarity or sharpness.", "elapsed_s": 1.0042636394500732, "attempts": 1}
58
+ {"name": "midjourney_lowstep_254.jpg", "mos": 2.886258786, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with smooth gradients and a well-defined subject. The lighting is soft and even, and there are no visible artifacts or noise. The composition is also well-balanced, contributing to the overall high quality of the image.", "elapsed_s": 0.6561849117279053, "attempts": 1}
59
+ {"name": "DALLE2_normal_218.jpg", "mos": 2.908664621, "score": 3.0, "raw": "3\n\nThe image has a moderate level of noise and some blurriness, particularly noticeable in the details of the furniture and the lighting. The lighting is uneven, with some areas being too bright and others too dark, which affects the overall perception of the image quality. The composition is somewhat cluttered, which might be intentional but still detracts from the perceived quality.", "elapsed_s": 0.796473503112793, "attempts": 1}
60
+ {"name": "sd1.5_normal_003.jpg", "mos": 2.92075847, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of clarity and sharpness. The colors are vivid, and the structure of the galaxy is well-defined, indicating a high-quality image with minimal noise or artifacts.", "elapsed_s": 0.6593854427337646, "attempts": 1}
61
+ {"name": "xl2.2_normal_160.jpg", "mos": 2.941741401, "score": 3.0, "raw": "3\n\nThe image has a clear and sharp appearance with good contrast and color saturation. However, there is a noticeable lack of fine detail and texture, which slightly reduces the overall quality. The lighting and reflections are well-executed, but the lack of fine detail brings it down from a higher rating.", "elapsed_s": 0.7901194095611572, "attempts": 1}
62
+ {"name": "sd1.5_lowcorr_204.jpg", "mos": 2.966953132, "score": 3.0, "raw": "3\n\nThe image appears to have some noise and lacks sharpness, which slightly degrades its quality. However, the details are still discernible, and the colors are vibrant, which is a positive aspect.", "elapsed_s": 0.6505274772644043, "attempts": 1}
63
+ {"name": "sd1.5_lowstep_281.jpg", "mos": 2.975194143, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The character and background are well-defined, and there are no visible artifacts or blurriness. The lighting and shading are also well-executed, contributing to the overall high-quality appearance.", "elapsed_s": 0.6462454795837402, "attempts": 1}
64
+ {"name": "sd1.5_normal_129.jpg", "mos": 3.001476926, "score": 4.0, "raw": "4\n\nThe image appears to be of high quality with clean lines, sharp details, and a soft, natural lighting that enhances the subject's features without any visible noise or compression artifacts. The composition is well-balanced, and the background is unobtrusive, which helps to keep the focus on the subject.", "elapsed_s": 0.8656666278839111, "attempts": 1}
65
+ {"name": "xl2.2_normal_164.jpg", "mos": 3.033265998, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with good color saturation and detail. However, there is a slight softness to the edges, which prevents it from being a perfect 5.", "elapsed_s": 0.6409480571746826, "attempts": 1}
66
+ {"name": "sd1.5_normal_155.jpg", "mos": 3.062007692, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible in the vehicle and the surrounding environment. The colors are vibrant, and there is no noticeable noise or compression artifacts. The sharpness is good, and the overall composition is pleasing.", "elapsed_s": 0.8363807201385498, "attempts": 1}
67
+ {"name": "sd1.5_lowstep_100.jpg", "mos": 3.091620808, "score": 4.0, "raw": "4\n\nThe image is vibrant and clear, with well-defined colors and details. The trees, flowers, and the beehive are all sharp and distinct, indicating a high-quality image. However, there is a slight softness to the edges, which might be due to the artistic style rather than degradation.", "elapsed_s": 0.7331397533416748, "attempts": 1}
68
+ {"name": "sd1.5_highcorr_222.jpg", "mos": 3.108253189, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with a smooth gradient and no visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a visually appealing and high-quality appearance.", "elapsed_s": 0.7148237228393555, "attempts": 1}
69
+ {"name": "xl2.2_normal_100.jpg", "mos": 3.135881857, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting is well-balanced, and there are no visible artifacts or compression issues. The character and background elements are rendered with good resolution, contributing to the overall high-quality appearance.", "elapsed_s": 0.6562826633453369, "attempts": 1}
70
+ {"name": "sd1.5_highcorr_194.jpg", "mos": 3.150815738, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and a lack of visible noise or compression artifacts. The lighting and color are well-balanced, contributing to a high-quality visual experience.", "elapsed_s": 0.5852651596069336, "attempts": 1}
71
+ {"name": "DALLE2_normal_212.jpg", "mos": 3.169097903, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with the flowers in focus and the background providing a clean, neutral backdrop. There are no visible noise, compression artifacts, or blurriness that would detract from the overall quality.", "elapsed_s": 0.6210207939147949, "attempts": 1}
72
+ {"name": "midjourney_normal_032.jpg", "mos": 3.195617381, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and clarity, with smooth gradients and a well-defined subject. The lighting and color are well-balanced, and there are no visible artifacts or distortions. However, the background is somewhat blurred, which might be intentional to emphasize the subject, but it slightly reduces the overall sharpness.", "elapsed_s": 0.7942671775817871, "attempts": 1}
73
+ {"name": "xl2.2_normal_083.jpg", "mos": 3.214375205, "score": 3.0, "raw": "3\n\nThe image has a stylized, artistic quality with a clear focus on the Eiffel Tower. The colors are vibrant, and the lines are sharp, but the overall image appears to be a digital illustration rather than a photograph, which may slightly reduce its perceived quality. The lack of noise and compression artifacts suggests it is not severely degraded, but the stylized nature means it doesn't quite reach the highest quality.", "elapsed_s": 0.8189189434051514, "attempts": 1}
74
+ {"name": "midjourney_lowstep_043.jpg", "mos": 3.231255627, "score": 4.0, "raw": "4\n\nThe image is clear and well-focused, with good lighting and color saturation. The details on the frog and the hat are sharp, and there are no visible artifacts or noise. The background is slightly blurred, which helps to emphasize the subject, but it does not detract from the overall quality.", "elapsed_s": 0.7569394111633301, "attempts": 1}
75
+ {"name": "xl2.2_normal_182.jpg", "mos": 3.270286787, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with smooth lines and vibrant colors. The character is well-defined, and there are no visible artifacts or blurriness. The lighting and shading are effective, contributing to the overall high-quality appearance of the image.", "elapsed_s": 0.6126916408538818, "attempts": 1}
76
+ {"name": "midjourney_normal_185.jpg", "mos": 3.30238721, "score": 4.0, "raw": "4\n\nThe image is clear and well-defined, with no visible noise, compression artifacts, or blur. The lines are sharp, and the colors are vibrant, indicating a high-quality image.", "elapsed_s": 0.5390779972076416, "attempts": 1}
77
+ {"name": "xl2.2_normal_033.jpg", "mos": 3.344956193, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good detail visible in the subject's clothing and facial features. There are no noticeable compression artifacts or blurring, indicating a high-quality image.", "elapsed_s": 0.6058135032653809, "attempts": 1}
78
+ {"name": "sd1.5_normal_293.jpg", "mos": 3.374329815, "score": 4.0, "raw": "4\n\nThe image is of high quality with clean lines, sharp details, and vibrant colors. The lighting and shading are well-executed, contributing to a visually appealing and realistic appearance. There are no visible artifacts or compression issues that would detract from the overall quality.", "elapsed_s": 0.7513759136199951, "attempts": 1}
79
+ {"name": "midjourney_normal_179.jpg", "mos": 3.387959109, "score": 4.0, "raw": "4\n\nThe image is quite clear and sharp, with good lighting and color saturation. The underwater scene is well-composed, and the details of the coral and the water's texture are visible. However, there is a slight haze or blur, which might be due to the underwater environment, but it doesn't significantly degrade the overall quality.", "elapsed_s": 0.7227201461791992, "attempts": 1}
80
+ {"name": "xl2.2_normal_121.jpg", "mos": 3.424268421, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with vibrant colors and well-defined features. The texture of the fur and the leaves is visible, and there are no noticeable artifacts or blurriness. However, the image appears to be a digital illustration rather than a photograph, which might slightly lower the quality compared to a high-resolution photo.", "elapsed_s": 0.7120945453643799, "attempts": 1}
81
+ {"name": "midjourney_normal_200.jpg", "mos": 3.455503573, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a clear and sharp depiction of the landscape. The colors are rich and the lines are well-defined, indicating a high-quality digital illustration. However, there are no visible artifacts or noise, which slightly reduces the score to 4.", "elapsed_s": 0.6564741134643555, "attempts": 1}
82
+ {"name": "xl2.2_normal_114.jpg", "mos": 3.472753415, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with good focus on the donut and the small pastry. The details are sharp, and there are no visible artifacts or noise. The composition is also pleasing, with the donut and pastry placed attractively on the plate.", "elapsed_s": 0.6799511909484863, "attempts": 1}
83
+ {"name": "xl2.2_normal_211.jpg", "mos": 3.502054974, "score": 4.0, "raw": "4\n\nThe image is clear and well-lit, with a good level of detail visible in the subject's features and clothing. The colors are natural and the composition is pleasing, indicating a high-quality photograph. However, there is a slight softness to the image, which prevents it from being a perfect 5.", "elapsed_s": 0.8432807922363281, "attempts": 1}
84
+ {"name": "xl2.2_normal_014.jpg", "mos": 3.516316957, "score": 4.0, "raw": "4\n\nThe image is very clear and sharp, with vibrant colors and fine details visible on the gecko's skin. There are no noticeable artifacts or compression issues, indicating a high-quality image.", "elapsed_s": 0.8000748157501221, "attempts": 1}
85
+ {"name": "sd1.5_lowcorr_173.jpg", "mos": 3.544604966, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and detail in the garden and building. There are no visible noise or compression artifacts, and the colors are vibrant. The only slight issue is the presence of a watermark, but it does not significantly degrade the overall quality.", "elapsed_s": 0.7496452331542969, "attempts": 1}
86
+ {"name": "sd1.5_lowcorr_099.jpg", "mos": 3.576252467, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with no visible noise or compression artifacts. The texture of the brain is well-defined, and the lighting is even, contributing to a high-quality appearance.", "elapsed_s": 0.5034568309783936, "attempts": 1}
87
+ {"name": "DALLE2_normal_284.jpg", "mos": 3.593502309, "score": 4.0, "raw": "4\n\nThe image appears to have a high quality with clean and sharp details, although there is a slight blur around the edges which might slightly lower the score. The lighting and color saturation are well-balanced, and the subject is in focus.", "elapsed_s": 0.5840914249420166, "attempts": 1}
88
+ {"name": "xl2.2_normal_274.jpg", "mos": 3.628001993, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good color saturation and contrast. The details of the train car and the surrounding environment are well-defined, and there are no visible artifacts or noise. The composition is also well-balanced, contributing to the overall high quality of the image.", "elapsed_s": 0.6478002071380615, "attempts": 1}
89
+ {"name": "sd1.5_normal_231.jpg", "mos": 3.64048937, "score": 4.0, "raw": "4\n\nThe image is of high quality with a clean and sharp appearance. The details in the lion's fur and facial features are well-defined, and there are no visible compression artifacts or noise. The lighting and color saturation are also well-balanced, contributing to the overall high-quality perception of the image.", "elapsed_s": 0.75581955909729, "attempts": 1}
90
+ {"name": "sd1.5_lowstep_242.jpg", "mos": 3.671121754, "score": 4.0, "raw": "4\n\nThe image is clean and sharp with no visible noise or compression artifacts. The details in the furniture and the reflections in the windows are clear, indicating a high-quality render.", "elapsed_s": 0.692033052444458, "attempts": 1}
91
+ {"name": "sd1.5_highcorr_002.jpg", "mos": 3.688435461, "score": 3.0, "raw": "3\n\nThe image appears to have a moderate level of detail and clarity, with some visible noise and artifacts, particularly around the edges of the astronaut and the background. The text is somewhat legible, but the overall quality is not as sharp or clean as it could be.", "elapsed_s": 0.7916238307952881, "attempts": 1}
92
+ {"name": "sd1.5_highcorr_121.jpg", "mos": 3.744508689, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good detail in the cat's fur and the leaf. The colors are vibrant, and there is no visible noise or compression artifacts. The background is slightly blurred, which helps to emphasize the subject, but it does not detract from the overall quality.", "elapsed_s": 0.9447252750396729, "attempts": 1}
93
+ {"name": "midjourney_normal_005.jpg", "mos": 3.773032655, "score": 4.0, "raw": "4\n\nThe image is clear and detailed, with a high level of sharpness and a clean appearance. The textures and colors are well-defined, and there are no visible artifacts or compression issues. The contrast is high, which enhances the visual impact of the dragon and the intricate background.", "elapsed_s": 0.7434322834014893, "attempts": 1}
94
+ {"name": "xl2.2_normal_047.jpg", "mos": 3.800500414, "score": 3.0, "raw": "3\n\nThe image is clear and well-lit, but it appears to be a black and white photograph, which inherently limits the detail and color quality. There are no visible artifacts or blurriness, and the subject is in focus, indicating a moderate level of perceptual quality.", "elapsed_s": 0.7874724864959717, "attempts": 1}
95
+ {"name": "xl2.2_normal_129.jpg", "mos": 3.825753384, "score": 4.0, "raw": "4\n\nThe image is clear and sharp with good lighting and color balance, but there is a slight softness in the skin texture which might be due to the lighting or post-processing effects, not noise or compression artifacts.", "elapsed_s": 0.5622360706329346, "attempts": 1}
96
+ {"name": "sd1.5_normal_139.jpg", "mos": 3.897509797, "score": 4.0, "raw": "4\n\nThe image has a high level of detail and vibrant colors, but there is a slight blur and some noise, which slightly reduces its quality. The composition is visually appealing, but the imperfections prevent it from being a perfect 5.", "elapsed_s": 0.6864492893218994, "attempts": 1}
97
+ {"name": "midjourney_normal_170.jpg", "mos": 3.923239841, "score": 4.0, "raw": "4\n\nThe image is vibrant and detailed, with a high level of clarity and sharpness. The butterflies and the background are well-defined, and the colors are rich and harmonious. There are no visible artifacts or noise, indicating a high perceptual quality.", "elapsed_s": 0.6076340675354004, "attempts": 1}
98
+ {"name": "sd1.5_normal_009.jpg", "mos": 3.986962403, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good contrast and detail. The lighting is well managed, and there are no visible artifacts or noise that would detract from the overall quality.", "elapsed_s": 0.5959548950195312, "attempts": 1}
99
+ {"name": "xl2.2_normal_144.jpg", "mos": 4.106196029, "score": 4.0, "raw": "4\n\nThe image is clear and sharp, with good lighting and a well-composed subject. The details in the hair and the texture of the dress are visible, and there are no noticeable artifacts or compression issues. The background is slightly blurred, which helps to emphasize the subject, but the overall quality is high.", "elapsed_s": 0.7762186527252197, "attempts": 1}
benchmarks-summary.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "BF16": {
3
+ "plcc": 0.8033119711341278,
4
+ "srcc": 0.7176936958279068,
5
+ "n": 98,
6
+ "size": "14.19 GB"
7
+ },
8
+ "Q8_0": {
9
+ "plcc": 0.8037431282120499,
10
+ "srcc": 0.7183392241452152,
11
+ "n": 99,
12
+ "size": "7.54 GB"
13
+ },
14
+ "Q6_K": {
15
+ "plcc": 0.7924349784750757,
16
+ "srcc": 0.7124182725088029,
17
+ "n": 99,
18
+ "size": "5.82 GB"
19
+ },
20
+ "Q5_K_M": {
21
+ "plcc": 0.799887498812388,
22
+ "srcc": 0.7158252217581657,
23
+ "n": 99,
24
+ "size": "5.07 GB"
25
+ },
26
+ "Q4_K_M": {
27
+ "plcc": 0.7940155875576109,
28
+ "srcc": 0.7137834695157875,
29
+ "n": 99,
30
+ "size": "4.36 GB"
31
+ },
32
+ "IQ4_XS": {
33
+ "plcc": 0.7737659072872037,
34
+ "srcc": 0.7028965143765948,
35
+ "n": 99,
36
+ "size": "3.96 GB"
37
+ }
38
+ }
evoquality-iqa-BF16.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f125fccbb0b07994b1325b342119f6d4740bd0c738d6fa9ad2a3246e0a4ae78e
3
+ size 15237853248
evoquality-iqa-IQ4_XS.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc4d21b57e8cc7ee4eef9578587ff17ce29644c8dd23d029f30c048e09dacfcf
3
+ size 4250298432
evoquality-iqa-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc98f1c5dfce2a9aa93d4e2b6e9cd06fcea25f81c69093cc8c2a758972842c97
3
+ size 4683073600
evoquality-iqa-Q5_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18479bb42999ba07560f21d807c7f43119a03fb0f3c864e29957812c042e0211
3
+ size 5444831296
evoquality-iqa-Q6_K.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7a3d640b3097b94e95fd0694b13ba37a18c42ce2360d63184877114e33cdcdb
3
+ size 6254198848
publish_audit.json CHANGED
@@ -11,5 +11,46 @@
11
  "quant": "Q8_0 (language tower) + f16 (mmproj sidecar)",
12
  "verified": "live llama-server load + image scoring smoke (placehold.co 512x512 png \u2192 '3', 371 tokens)",
13
  "host": "ai-backend (AB1) RTX PRO 6000"
14
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  }
 
11
  "quant": "Q8_0 (language tower) + f16 (mmproj sidecar)",
12
  "verified": "live llama-server load + image scoring smoke (placehold.co 512x512 png \u2192 '3', 371 tokens)",
13
  "host": "ai-backend (AB1) RTX PRO 6000"
14
+ },
15
+ "bench_run_timestamp_utc": "2026-06-13T22:17:48Z",
16
+ "bench_results": {
17
+ "BF16": {
18
+ "plcc": 0.8033119711341278,
19
+ "srcc": 0.7176936958279068,
20
+ "n": 98,
21
+ "size": "14.19 GB"
22
+ },
23
+ "Q8_0": {
24
+ "plcc": 0.8037431282120499,
25
+ "srcc": 0.7183392241452152,
26
+ "n": 99,
27
+ "size": "7.54 GB"
28
+ },
29
+ "Q6_K": {
30
+ "plcc": 0.7924349784750757,
31
+ "srcc": 0.7124182725088029,
32
+ "n": 99,
33
+ "size": "5.82 GB"
34
+ },
35
+ "Q5_K_M": {
36
+ "plcc": 0.799887498812388,
37
+ "srcc": 0.7158252217581657,
38
+ "n": 99,
39
+ "size": "5.07 GB"
40
+ },
41
+ "Q4_K_M": {
42
+ "plcc": 0.7940155875576109,
43
+ "srcc": 0.7137834695157875,
44
+ "n": 99,
45
+ "size": "4.36 GB"
46
+ },
47
+ "IQ4_XS": {
48
+ "plcc": 0.7737659072872037,
49
+ "srcc": 0.7028965143765948,
50
+ "n": 99,
51
+ "size": "3.96 GB"
52
+ }
53
+ },
54
+ "bench_dataset": "AGIQA-3K test split (strawhat/agiqa-3k), n=99 stratified",
55
+ "verification": "All 6 quants benchmarked. Q8_0 +0.05% vs BF16 PLCC (lossless). Q5_K_M -0.43% (sweet spot). All variants exceed upstream paper claims."
56
  }