Image-Text-to-Text
GGUF
English
llama.cpp
image-quality-assessment
no-reference-iqa
perceptual-quality
aigc-quality
qwen2.5-vl
vision-language
quantized
conversational
Instructions to use Doradus-AI/EvoQuality-IQA-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Doradus-AI/EvoQuality-IQA-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Doradus-AI/EvoQuality-IQA-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Doradus-AI/EvoQuality-IQA-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Doradus-AI/EvoQuality-IQA-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
- Ollama
How to use Doradus-AI/EvoQuality-IQA-GGUF with Ollama:
ollama run hf.co/Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
- Unsloth Studio
How to use Doradus-AI/EvoQuality-IQA-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Doradus-AI/EvoQuality-IQA-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for Doradus-AI/EvoQuality-IQA-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Doradus-AI/EvoQuality-IQA-GGUF to start chatting
- Pi
How to use Doradus-AI/EvoQuality-IQA-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use Doradus-AI/EvoQuality-IQA-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use Doradus-AI/EvoQuality-IQA-GGUF with Docker Model Runner:
docker model run hf.co/Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
- Lemonade
How to use Doradus-AI/EvoQuality-IQA-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.EvoQuality-IQA-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Doradus-AI/EvoQuality-IQA-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Doradus-AI/EvoQuality-IQA-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
File size: 32,633 Bytes
f320aa8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | {"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
{"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}
|