CoolFace
Modelpublic

Abiray/Qwen3.5-2B-heretic-GGUF

sourceHugging Faceupdated 7mo agoView on Hugging Face
2likes583downloads
Model Card

Qwen3.5-2B-heretic-GGUF

This repository contains GGUF quantizations for jordanwoodson/Qwen3.5-2B-heretic, alongside the mmproj-F16.gguf vision projector to enable multimodal (image-to-text) inference.

This model is good for edge devices and better performance.

Stop Sequence

Please ensure you update the stop sequence in your inference client to: <|im_end|>


Available Files

FilenameFormatDescription
Qwen3.5-2B-heretic-Q4_K_M.ggufQ4KMIdeal sweet spot. Excellent balance of low memory footprint and high quality.
Qwen3.5-2B-heretic-Q5_K_M.ggufQ5KMSlightly larger than Q4, offering a marginal quality increase.
Qwen3.5-2B-heretic-Q6_K.ggufQ6_KVery high quality, nearly indistinguishable from unquantized.
Qwen3.5-2B-heretic-Q8_0.ggufQ8_0Practically lossless fidelity, largest quantized size.
mmproj-F16.ggufF16The vision projector required for any image analysis tasks.

Usage with llama.cpp

You can run this model locally using the llama.cpp command-line interface.

Standard Text Inference

To run a standard text generation prompt, point llama-cli to your downloaded GGUF file:

bash
./llama-cli -m Qwen3.5-2B-heretic-Q4_K_M.gguf -p "Write a quick Python script." -n 512