Views
No views yet
Note: If your specific version of Qwen 2.5 Coder Instruct is a different parameter size (e.g., 1.5B or 32B), make sure to updateQwen/Qwen2.5-Coder-7B-Instructin the YAML header above with the exact Hugging Face path of the base model you used.
| Property | Value |
|---|---|
| Base Model | Qwen 2.5 Coder Instruct |
| Dataset | KAKA22/CodeRM-UnitTest |
| Language | Python |
| Format | 16-bit (Safetensors/PyTorch) |
llama.cpp. This makes it much easier to run locally on consumer hardware.make installed on your system.1git clone https://github.com/ggerganov/llama.cpp
2cd llama.cpp
3makeNote: If you are using a GPU, you may want to compile with specific flags (e.g.,make GGML_CUDA=1for NVIDIA GPUs).
pip install -r requirements.txthuggingface-cli. Replace <YOUR_USERNAME>/<YOUR_MODEL_NAME> with your actual Hugging Face repository ID:huggingface-cli download <YOUR_USERNAME>/<YOUR_MODEL_NAME> --local-dir ../my-16bit-modelllama.cpp directory:python convert_hf_to_gguf.py ../my-16bit-model --outfile ../my-16bit-model/model-fp16.ggufllama-quantize executable to compress the model to a 4-bit format. The Q4_K_M method provides a great balance between size and quality../llama-quantize ../my-16bit-model/model-fp16.gguf ../my-16bit-model/model-q4_k_m.gguf Q4_K_Mmodel-q4_k_m.gguf with any standard GGUF runner like Ollama, LM Studio, or the llama.cpp server!