tinyopsec/MiniCPM5-2B-SFT-Pashto-GGUF
11.2k
MiniCPM5-2B-SFT-Pashto-GGUF
GGUF quantizations of nassimjp/MiniCPM5-2B-SFT-Pashto, a fine-tuned version of openbmb/MiniCPM5-2B for Pashto language.
Quant Table
VRAM / RAM Requirements
Usage
llama.cpp
./llama-cli -m model_q4_k_m.gguf -p "Your prompt here" -n 256llama-cpp-python
from llama_cpp import Llama
llm = Llama(model_path="model_q4_k_m.gguf")
output = llm("Your prompt here", max_tokens=256)
print(output["choices"][0]["text"])LM Studio
Download any .gguf file and load directly in LM Studio.
Ollama
ollama run hf.co/tinyopsec/MiniCPM5-2B-SFT-Pashto-GGUF:Q4_K_MNotes
- Architecture:
LlamaForCausalLM - Fine-tuned for Pashto (پښتو) language
- Based on MiniCPM5-2B with hybrid reasoning (Think / No-Think modes)
- For llama.cpp, recommended:
--min-p 0.0to avoid repetition
