Views
No views yet
| File | Size | Format | Description |
|---|---|---|---|
| gemma3-pmb-unsiq-q4_k_m.gguf | 768.72 MB | Q4_K_M (4-bit) | Recommended for production |
| gemma3-pmb-unsiq-f16.gguf | 1.87 GB | F16 (16-bit) | Recommended for production |
1# Download file Q4_K_M (recommended)
2wget https://huggingface.co/Pandusu/Qlora-gguf-v4/resolve/main/gemma3-pmb-unsiq-q4_k_m.gguf
3
4# Download Modelfile
5wget https://huggingface.co/Pandusu/Qlora-gguf-v4/resolve/main/Modelfile.gemma3-pmb-unsi1# Create model di Ollama
2ollama create gemma3-pmb-unsi -f Modelfile.gemma3-pmb-unsi
3
4# Verifikasi
5ollama list1# Run model
2ollama run gemma3-pmb-unsi
3
4# Contoh query
5ollama run gemma3-pmb-unsi "Jelaskan tentang proses pendaftaran mahasiswa baru"1import requests
2
3def chat_with_model(question):
4 response = requests.post('http://localhost:11434/api/generate',
5 json={
6 "model": "gemma3-pmb-unsi",
7 "prompt": question,
8 "stream": False
9 })
10 return response.json()['response']
11
12# Contoh
13answer = chat_with_model("Apa saja jalur pendaftaran yang tersedia?")
14print(answer)PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER top_k 40
PARAMETER repeat_penalty 1.1
PARAMETER num_ctx 4096
PARAMETER num_predict 512ollama pull gemma3-pmb-unsi1@misc{gemma3_pmb_unsi,
2 title={gemma3-pmb-unsi: Fine-tuned Gemma 3 1B for Indonesian University Admission Chatbot},
3 author={PMB Chatbot Project},
4 year={2025},
5 publisher={Hugging Face},
6 howpublished={\url{https://huggingface.co/Pandusu/Qlora-gguf-v4}}
7}