CoolFace
Modelpublic

alwaysgood/qwen35_sft_023_dpo-GGUF

sourceHugging Faceotherupdated 4mo agoView on Hugging Face
0likes165downloads
Model Card

qwen35sft023_dpo GGUF

GGUF conversion of `alwaysgood/qwen35_sft_023_dpo` for llama.cpp and LM Studio.

Files

FilePurpose
qwen35_sft_023_dpo-Q4_K_M.ggufMain text model, recommended default
qwen35_sft_023_dpo-mmproj-BF16.ggufMultimodal projector for vision/image input
qwen35_sft_023_dpo-BF16.ggufBF16 text model, larger reference build

The main BF16 and Q4_K_M GGUF files are language/text models. Vision/image tensors are split into the separate mmproj-BF16 GGUF, so image input requires loading both the main model and the matching mmproj file.

LM Studio custom template

This model was trained with a raw DPO/SFT translation prompt, not a ChatML chat prompt. LM Studio's normal User/Assistant split can still be used by putting the fixed Instruction and Source headers in the custom template.

In LM Studio, open the model settings, go to Advanced Configuration -> Prompt Template, choose Custom, and use:

FieldValue
Choose templateCustom
Before Systemleave empty
After System\n\n
Before User### Instruction:\nTranslate the English source into Korean.\n\n### Source:\n
After User\n\n
Before Assistant### Response:\n
After Assistant\n\n

If you type this in LM Studio chat:

text
The Federal Reserve raised interest rates by 25 basis points.

LM Studio should send this prompt to the model:

text
### Instruction:
Translate the English source into Korean.

### Source:
The Federal Reserve raised interest rates by 25 basis points.

### Response:

Suggested decoding: greedy or low-temperature translation, e.g. temperature 0.0 to 0.3, context length 8192.

llama.cpp

Text:

bash
llama-cli \
  -m qwen35_sft_023_dpo-Q4_K_M.gguf \
  --color -ngl all -fa -c 8192 \
  -p $'### Instruction:\nTranslate the English source into Korean.\n\n### Source:\nThe Federal Reserve raised interest rates by 25 basis points.\n\n### Response:\n'

Vision:

bash
llama-mtmd-cli \
  -m qwen35_sft_023_dpo-Q4_K_M.gguf \
  --mmproj qwen35_sft_023_dpo-mmproj-BF16.gguf \
  --image /path/to/image.png \
  -p $'### Instruction:\nTranslate the English source into Korean.\n\n### Source:\nDescribe this image in Korean.\n\n### Response:\n' \
  -ngl all -fa -c 8192

Notes

The source checkpoint contains both language and vision tensors. The GGUF text model was converted with the vision tensors split out, and the multimodal projector was converted separately.

Smoke test result with llama.cpp:

text
Q: 1+1=? A: 2