CoolFace
Modelpublic

kturki/qwen2.5-7B_internal_audit

sourceHugging Faceupdated 1y agoView on Hugging Face
1likes22downloads
Model Card

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

FilenameQuantizationDescription
model-Q3_K_M.ggufQ3KM3-bit quantization — low memory footprint
model-Q4_K_M.ggufQ4KM4-bit — good performance and efficiency
model-Q5_K_M.ggufQ5KM5-bit — balance between performance and quality
model-Q6_K.ggufQ6_K6-bit — high quality, higher RAM usage
model-Q8_0.ggufQ8_08-bit — near original model fidelity
model-fp16.ggufFP16Full 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 usually system, user, or assistant
  • —This clearly defines message boundaries for the model to interpret dialogue turns