Instructions to use nikowru/koalipi-slm with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use nikowru/koalipi-slm with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf nikowru/koalipi-slm:F16 # Run inference directly in the terminal: llama cli -hf nikowru/koalipi-slm:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf nikowru/koalipi-slm:F16 # Run inference directly in the terminal: llama cli -hf nikowru/koalipi-slm:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf nikowru/koalipi-slm:F16 # Run inference directly in the terminal: ./llama-cli -hf nikowru/koalipi-slm:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf nikowru/koalipi-slm:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf nikowru/koalipi-slm:F16
Use Docker
docker model run hf.co/nikowru/koalipi-slm:F16
- LM Studio
- Jan
- Ollama
How to use nikowru/koalipi-slm with Ollama:
ollama run hf.co/nikowru/koalipi-slm:F16
- Unsloth Desktop
- Docker Model Runner
How to use nikowru/koalipi-slm with Docker Model Runner:
docker model run hf.co/nikowru/koalipi-slm:F16
- Lemonade
How to use nikowru/koalipi-slm with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull nikowru/koalipi-slm:F16
Run and chat with the model
lemonade run user.koalipi-slm-F16
List all available models
lemonade list
- Atomic Chat
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-VL-3B-Instruct
|
| 3 |
+
language:
|
| 4 |
+
- fil
|
| 5 |
+
- en
|
| 6 |
+
license: apache-2.0
|
| 7 |
+
tags:
|
| 8 |
+
- qwen2.5-vl
|
| 9 |
+
- education
|
| 10 |
+
- filipino
|
| 11 |
+
- fine-tuned
|
| 12 |
+
- gguf
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# KoaliPi SLM — Qwen2.5-VL-3B Fine-tune
|
| 16 |
+
|
| 17 |
+
KoaliPi SLM is a fine-tuned vision-language model built on top of
|
| 18 |
+
[Qwen2.5-VL-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-3B-Instruct),
|
| 19 |
+
trained for AI-powered STEM study assistance for Filipino students
|
| 20 |
+
(high school and college level).
|
| 21 |
+
|
| 22 |
+
## Files
|
| 23 |
+
| File | Size | Description |
|
| 24 |
+
|------|------|-------------|
|
| 25 |
+
| `koalipi-slm-q4km.gguf` | ~1.9 GB | Q4_K_M quantized — recommended for on-device use |
|
| 26 |
+
| `koalipi-slm.gguf` | 3.29 GB | Q8_0 quantized — higher precision |
|
| 27 |
+
|
| 28 |
+
## Training Details
|
| 29 |
+
- **Base model:** Qwen/Qwen2.5-VL-3B-Instruct
|
| 30 |
+
- **Method:** LoRA fine-tuning via Unsloth
|
| 31 |
+
- **Training steps:** 30
|
| 32 |
+
- **Quantization:** 16-bit during training, exported to Q4_K_M via llama.cpp
|
| 33 |
+
|
| 34 |
+
## Training Data
|
| 35 |
+
The model was fine-tuned on a custom KoaliPi dataset covering:
|
| 36 |
+
- Handwriting parsing (IAM handwriting dataset + custom Filipino notes)
|
| 37 |
+
- Filipino Q&A (Taglish STEM explanations)
|
| 38 |
+
- English Q&A (STEM concepts)
|
| 39 |
+
- MCQ generation
|
| 40 |
+
- Practice problem generation
|
| 41 |
+
- Study plan generation
|
| 42 |
+
|
| 43 |
+
## Instruction Format
|
| 44 |
+
No system prompt needed. Uses ChatML format:
|
| 45 |
+
|
| 46 |
+
**Document parsing:**
|