CoolFace
Modelpublic

tinyopsec/bible-assistant-qwen35-4b-GGUF

sourceHugging Facemitupdated 8d agoView on Hugging Face
0likes2.1kdownloads
Model Card

Bible Assistant Qwen3.5-4B GGUF

GGUF quantized versions of Ttimms/Bible-Assistant-Qwen3.5-4B-v2.

Quantization

QuantBitsSizeUse Case
Q8_08~4.2 GBMaximum quality, slower
Q6_K6~3.1 GBHigh quality
Q5KM5~2.6 GBBalanced quality/speed
Q5KS5~2.4 GBBalanced quality/speed
Q4KM4~2.0 GBGood quality/speed trade-off
Q4KS4~1.9 GBGood quality/speed trade-off
Q3KL3~1.6 GBSmall, acceptable quality
Q3KM3~1.5 GBSmall, acceptable quality
Q3KS3~1.4 GBSmall, acceptable quality
Q2_K2~1.1 GBMinimal, fast

VRAM Requirements

QuantizationVRAMNotes
F16~8 GBFull precision
Q8_0~4.5 GBMinimal overhead
Q6_K~3.5 GBMinimal overhead
Q5KM~3.0 GBMinimal overhead
Q4KM~2.5 GBMinimal overhead
Q3KM~2.0 GBMinimal overhead
Q2_K~1.5 GBMinimal overhead

Usage

llama.cpp

bash
./main -m model_q5_k_m.gguf -p "Your prompt here" -n 256

llama-cpp-python

python
from llama_cpp import Llama

llm = Llama(model_path="model_q5_k_m.gguf", n_gpu_layers=-1)
output = llm("Your prompt here", max_tokens=256)
print(output["choices"][0]["text"])

LM Studio

Load any .gguf file directly in LM Studio.

Ollama

bash
ollama create bible-assistant-qwen35 -f Modelfile

Where Modelfile contains:

FROM model_q5_k_m.gguf
PARAMETER temperature 0.7

Original Model

Ttimms/Bible-Assistant-Qwen3.5-4B-v2 — A 4B parameter model fine-tuned for Bible-related assistance and knowledge.

License

Refer to the original model's license.