Question Answering
GGUF
French
English
Arabic
quantization
qwen2.5
llama.cpp
internal-audit
fine-tuned
Instructions to use kturki/qwen2.5-7B_internal_audit 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 kturki/qwen2.5-7B_internal_audit 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 kturki/qwen2.5-7B_internal_audit:Q4_K_M # Run inference directly in the terminal: llama cli -hf kturki/qwen2.5-7B_internal_audit:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kturki/qwen2.5-7B_internal_audit:Q4_K_M # Run inference directly in the terminal: llama cli -hf kturki/qwen2.5-7B_internal_audit: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 kturki/qwen2.5-7B_internal_audit:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf kturki/qwen2.5-7B_internal_audit: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 kturki/qwen2.5-7B_internal_audit:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf kturki/qwen2.5-7B_internal_audit:Q4_K_M
Use Docker
docker model run hf.co/kturki/qwen2.5-7B_internal_audit:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use kturki/qwen2.5-7B_internal_audit with Ollama:
ollama run hf.co/kturki/qwen2.5-7B_internal_audit:Q4_K_M
- Unsloth Studio
How to use kturki/qwen2.5-7B_internal_audit 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 kturki/qwen2.5-7B_internal_audit 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 kturki/qwen2.5-7B_internal_audit to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for kturki/qwen2.5-7B_internal_audit to start chatting
- Docker Model Runner
How to use kturki/qwen2.5-7B_internal_audit with Docker Model Runner:
docker model run hf.co/kturki/qwen2.5-7B_internal_audit:Q4_K_M
- Lemonade
How to use kturki/qwen2.5-7B_internal_audit with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kturki/qwen2.5-7B_internal_audit:Q4_K_M
Run and chat with the model
lemonade run user.qwen2.5-7B_internal_audit-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Qwen2.5 โ Internal Audit Q&A (Quantized GGUF)
This repository contains quantized GGUF-format variants of a fine-tuned Qwen 2.5 model, specialized for question answering (Q&A) on internal audit data.
These models are optimized for efficient deployment in environments using llama.cpp, llama-cpp-python, or compatible inference servers (e.g., llama-server, text-generation-webui).
Fine-Tuning Overview
- Base Model: Qwen2.5 7B
- Fine-Tuning Task: Instruction-based Q&A on internal audit reports, policies, and compliance logs
- Training Data: ~100k entries from anonymized internal audit datasets (private & proprietary)
- Format: Chat-style instruction tuning with questions and detailed answers
๐๏ธ Quantized Variants
| Filename | Quantization | Description |
|---|---|---|
model-Q3_K_M.gguf |
Q3_K_M | 3-bit quantization โ low memory footprint |
model-Q4_K_M.gguf |
Q4_K_M | 4-bit โ good performance and efficiency |
model-Q5_K_M.gguf |
Q5_K_M | 5-bit โ balance between performance and quality |
model-Q6_K.gguf |
Q6_K | 6-bit โ high quality, higher RAM usage |
model-Q8_0.gguf |
Q8_0 | 8-bit โ near original model fidelity |
model-fp16.gguf |
FP16 | Full precision โ highest quality, requires GPU |
ChatML Format
Token structure
Each message in the conversation is wrapped like this:
<|im_start|>{role}
{message content}
<|im_end|>
{role}is usuallysystem,user, orassistant- This clearly defines message boundaries for the model to interpret dialogue turns
- Downloads last month
- 51
Hardware compatibility
Log In to add your hardware