CoolFace
Modelpublic

ragib01/Qwen3-4B-customer-support-gguf

sourceHugging Faceapache-2.0updated 11mo agoView on Hugging Face
0likes199downloads
Model Card

Qwen3 4B Customer Support - GGUF

This repository contains GGUF quantized versions of ragib01/Qwen3-4B-customer-support for efficient inference with llama.cpp and compatible tools.

Model Description

A fine-tuned Qwen3-4B model optimized for customer support tasks, converted to GGUF format for efficient CPU and GPU inference.

Available Quantization Formats

FilenameQuant MethodSizeDescriptionUse Case
Qwen3-4B-customer-support-f16.gguff16~8GBFull 16-bit precisionBest quality, requires more RAM
Qwen3-4B-customer-support-Q8_0.ggufQ8_0~4.5GB8-bit quantizationHigh quality, good balance
Qwen3-4B-customer-support-Q6_K.ggufQ6_K~3.5GB6-bit quantizationGood quality, smaller size
Qwen3-4B-customer-support-Q5KM.ggufQ5KM~3GB5-bit mediumBalanced quality/size
Qwen3-4B-customer-support-Q4KM.ggufQ4KM~2.5GB4-bit mediumRecommended - best balance
Qwen3-4B-customer-support-Q4KS.ggufQ4KS~2.3GB4-bit smallSmaller, slightly lower quality
Qwen3-4B-customer-support-Q3KM.ggufQ3KM~2GB3-bit mediumVery small, decent quality
Qwen3-4B-customer-support-Q2_K.ggufQ2_K~1.5GB2-bitSmallest, lower quality

Recommendation: Start with Qwen3-4B-customer-support-Q4_K_M.gguf for the best balance of quality and size.

Usage

LM Studio

  1. 1.Open LM Studio
  2. 2.Go to the "Search" tab
  3. 3.Search for ragib01/Qwen3-4B-customer-support
  4. 4.Download your preferred quantization
  5. 5.Load and start chatting!

llama.cpp (Command Line)

bash
# Download a model
huggingface-cli download ragib01/Qwen3-4B-customer-support-gguf Qwen3-4B-customer-support-Q4_K_M.gguf --local-dir ./models

# Run inference
./llama-cli -m ./models/Qwen3-4B-customer-support-Q4_K_M.gguf -p "How do I track my order?" -n 256

Python (llama-cpp-python)

python
from llama_cpp import Llama

# Load model
llm = Llama(
    model_path="./models/Qwen3-4B-customer-support-Q4_K_M.gguf",
    n_ctx=2048,
    n_threads=8,
    n_gpu_layers=35  # Adjust based on your GPU
)

# Generate response
output = llm(
    "How do I track my order?",
    max_tokens=256,
    temperature=0.7,
    top_p=0.9,
)

print(output['choices'][0]['text'])

Ollama

bash
# Create a Modelfile
cat > Modelfile << EOF
FROM ./Qwen3-4B-customer-support-Q4_K_M.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
EOF

# Create the model
ollama create qwen3-customer-support -f Modelfile

# Run it
ollama run qwen3-customer-support "How do I track my order?"

Prompt Format

This model uses the Qwen chat format:

<|im_start|>system
You are a helpful customer support assistant.<|im_end|>
<|im_start|>user
How do I track my order?<|im_end|>
<|im_start|>assistant

Performance Notes

  • —CPU: Q4KM works well on modern CPUs with 8GB+ RAM
  • —GPU: Use higher quantizations (Q6K, Q80) if you have VRAM available
  • —Mobile: Q3KM or Q2_K for resource-constrained devices

Original Model

This is a quantized version of unsloth/Qwen3-4B-Instruct-2507.

License

Apache 2.0

Citation

bibtex
@misc{{qwen3-customer-support-gguf,
  author = {{ragib01}},
  title = {{Qwen3 4B Customer Support - GGUF}},
  year = {{2025}},
  publisher = {{HuggingFace}},
  url = {{https://huggingface.co/ragib01/Qwen3-4B-customer-support-gguf}}
}}