CoolFace
Modelpublic

Cubex11/Solari-GGUF

sourceHugging Faceapache-2.0updated 20d agoView on Hugging Face
0likes240downloads
Model Card

Solari-GGUF

GGUF quantized version of Solari — a 500M parameter vision-language model fine-tuned for reduced hallucination on real-world images.

For full model details, training procedure, and benchmark analysis, see the Solari model card.

Model Details

Benchmark Results

Solari improves on 7 out of 8 benchmarks vs the base model:

BenchmarkBase**Solari**Change
POPE Overall82.6785.08+2.41
POPE Recall76.7385.33+8.60
AMBER Avg79.3879.77+0.39
A-OKVQA68.1269.00+0.88
MMStar38.3339.60+1.27
MMBench53.1453.42+0.28
RealWorldQA49.8050.59+0.78
HallusionBench27.5828.14+0.56
MME Perception12161119-97.7
Note: Benchmarks were evaluated on the full-precision model. GGUF quantization may cause minor performance differences.

Usage

With llama.cpp

bash
# Download the GGUF file
huggingface-cli download Cubex11/Solari-GGUF --local-dir ./solari-gguf

# Run inference
./llama-cli -m ./solari-gguf/Solari.gguf -p "Describe this image" --image your_image.jpg

With Ollama

bash
# Create a Modelfile
echo 'FROM ./Solari.gguf' > Modelfile
ollama create solari -f Modelfile
ollama run solari

Links

Citation

bibtex
@misc{solari2026,
    title={Solari: Hallucination-Reduced Vision Language Model via QLoRA DPO on RLAIF-V},
    author={Cubex11},
    year={2026},
    url={https://huggingface.co/Cubex11/Solari}
}