CoolFace
Modelpublic

evalstate/demo-qwen-sft-gguf

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes35downloads
Model Card

demo-qwen-sft-gguf

This is a GGUF conversion of evalstate/demo-qwen-sft, which is a LoRA fine-tuned version of Qwen/Qwen2.5-0.5B.

Model Details

  • —Base Model: Qwen/Qwen2.5-0.5B
  • —Fine-tuned Model: evalstate/demo-qwen-sft
  • —Training: Supervised Fine-Tuning (SFT) with TRL
  • —Format: GGUF (for llama.cpp, Ollama, LM Studio, etc.)

Available Quantizations

FileQuantSizeDescriptionUse Case
demo-qwen-sft-f16.ggufF16~1GBFull precisionBest quality, slower
demo-qwen-sft-q8_0.ggufQ8_0~500MB8-bitHigh quality
demo-qwen-sft-q5km.ggufQ5KM~350MB5-bit mediumGood quality, smaller
demo-qwen-sft-q4km.ggufQ4KM~300MB4-bit mediumRecommended - good balance

Usage

With llama.cpp

bash
# Download model
huggingface-cli download evalstate/demo-qwen-sft-gguf demo-qwen-sft-q4_k_m.gguf

# Run with llama.cpp
./llama-cli -m demo-qwen-sft-q4_k_m.gguf -p "Your prompt here"

With Ollama

  1. 1.Create a Modelfile:
FROM ./demo-qwen-sft-q4_k_m.gguf
  1. 1.Create the model:
bash
ollama create my-model -f Modelfile
ollama run my-model

With LM Studio

  1. 1.Download the .gguf file
  2. 2.Import into LM Studio
  3. 3.Start chatting!

License

Inherits the license from the base model: Qwen/Qwen2.5-0.5B

Citation

bibtex
@misc{demo_qwen_sft_gguf,
  author = {evalstate},
  title = {demo-qwen-sft-gguf},
  year = {2025},
  publisher = {Hugging Face},
  url = {https://huggingface.co/evalstate/demo-qwen-sft-gguf}
}

Converted to GGUF format using llama.cpp