File size: 6,661 Bytes
4d7bf1f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | ---
language:
- mk
license: apache-2.0
library_name: transformers
pipeline_tag: text-generation
tags:
- macedonian
- cyrillic
- mistral
- qlora
- peft
base_model: mistralai/Mistral-7B-v0.1
datasets:
- ainowmk/MK-LLM-Mistral-data
metrics:
- perplexity
pretty_name: MK-LLM (Mistral)
model-index:
- name: MK-LLM-Mistral
results: []
---
# π²π° MK-LLM: The First Open Macedonian Language Model
## π About This Project
MK-LLM is Macedonia's first open-source Large Language Model (LLM), developed for the community, by the community. This project is led by AI Now - Association for Artificial Intelligence in Macedonia.
π **Website:** [www.ainow.mk](https://www.ainow.mk)
π© **Contact:** [contact@ainow.mk](mailto:contact@ainow.mk)
π **Model:** [MK-LLM-Mistral](https://huggingface.co/ainowmk/MK-LLM-Mistral)
π» **GitHub:** [MK-LLM](https://github.com/AI-now-mk/MK-LLM)
## π Latest Updates (14.10.2025)
- OpenAI-compatible endpoints: `/v1/chat/completions`, `/v1/completions`, `/v1/models` with JSON SSE streaming
- QLoRA training pipeline (4-bit) with LoRA adapters and gradient checkpointing
- Upgraded Macedonian data pipeline: cleaner extraction (trafilatura), gcld3 language filter, MinHash dedup
- Gradio demo UI and improved FastAPI server (env-based config, lazy model load, quantization toggles)
- Repository hygiene: LICENSE, model/dataset cards, Makefile, package inits, `.gitkeep` for data/models
## π Repository Structure
```plaintext
MK-LLM/
βββ data/
β βββ wikipedia/
β β βββ download_wiki.py
β β βββ parse_wiki.py
β βββ cleaned/
β βββ processed/
β βββ raw/
β βββ tokenized/
β βββ eval/
β β βββ mk_eval.jsonl
β βββ process_all_data.py
β βββ clean_wikipedia.py
βββ examples/
β βββ client_python.py
β βββ client_js.mjs
β βββ data_loader.py
β βββ train_mistral_mk.py
βββ inference/
β βββ api.py
β βββ gradio_app.py
β βββ chatbot.py
βββ training/
β βββ train_pipeline.py
β βββ fine_tune_mistral.py
βββ scripts/
β βββ preprocess_data.py
β βββ evaluate.py
βββ configs/
β βββ train_small.yaml
β βββ train_full.yaml
βββ tests/
β βββ test_api.py
β βββ test_model.py
β βββ test_dataset.py
βββ docs/
β βββ EXTENDING.md
β βββ GITHUB_ISSUES.md
βββ .github/
β βββ workflows/ci.yml
β βββ ISSUE_TEMPLATE/
β β βββ bug_report.yml
β β βββ feature_request.yml
β βββ PULL_REQUEST_TEMPLATE.md
βββ models/
βββ notebooks/
β βββ evaluation.ipynb
βββ Dockerfile
βββ docker-compose.yml
βββ Makefile
βββ requirements.txt
βββ constraints.txt
βββ LICENSE
βββ MODEL_CARD.md
βββ DATASET_CARD.md
βββ CODE_OF_CONDUCT.md
βββ SECURITY.md
βββ README.md
```
## Getting Started
1. Clone the repository:
```bash
git clone https://github.com/AI-now-mk/MK-LLM.git
cd MK-LLM
```
2) Install dependencies
```bash
pip install -r requirements.txt
```
Optional (recommended): use a virtual environment
```bash
python -m venv .venv
# Windows
.\.venv\Scripts\activate
# macOS/Linux
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
```
3) Configure environment (optional)
Create a `.env` file in the project root:
```bash
HOST=0.0.0.0
PORT=8000
ALLOW_ORIGINS=*
MODEL_PATH=./models/mistral-finetuned-mk
MODEL_ID=mk-llm
TRUST_REMOTE_CODE=true
LOAD_IN_4BIT=false
LOAD_IN_8BIT=false
TORCH_DTYPE=float16
```
4) Quick run: inference API
```bash
# Ensure a model exists at ./models/mistral-finetuned-mk (train or download)
python -m inference.api
# In another terminal, call the API
curl -X POST http://localhost:8000/generate \
-H "Content-Type: application/json" \
-d '{"prompt":"ΠΠ΄ΡΠ°Π²ΠΎ ΠΠ°ΠΊΠ΅Π΄ΠΎΠ½ΠΈΡΠ°!", "max_new_tokens":128}'
```
5) Optional: Gradio demo UI
```bash
python -m inference.gradio_app
# Open http://localhost:7860
```
6) Prepare data (Macedonian)
```bash
# Download and extract Macedonian Wikipedia
python -m data.wikipedia.download_wiki
# Parse Wikipedia dump into clean text
python -m data.wikipedia.parse_wiki
# Collect web + combine + clean + mk language filter
python -m data.process_all_data
```
7) Train (example)
```bash
python -m training.train_pipeline
# or
python -m training.fine_tune_mistral
```
### Docker
Build and run the API with Docker:
```bash
docker build -t mk-llm .
docker run --gpus all -p 8000:8000 -e MODEL_PATH=./models/mistral-finetuned-mk mk-llm
```
Or via docker-compose:
```bash
docker-compose up --build
```
### Continuous Integration
This repository includes a GitHub Actions CI to lint, type-check, and run tests on PRs/commits to `main`.
### Constraints (reproducible installs)
To install with pinned versions:
```bash
pip install -r requirements.txt -c constraints.txt
```
### OpenAI-compatible endpoints
This server exposes OpenAI-style routes so common clients (incl. gpt-oss-compatible tooling) can connect.
- Chat Completions (streaming supported):
```bash
curl http://localhost:8000/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{
"model": "mk-llm",
"messages": [
{"role": "system", "content": "Π’ΠΈ ΡΠΈ ΠΏΠΎΠΌΠΎΡΠ½ΠΈΠΊ ΠΊΠΎΡ Π·Π±ΠΎΡΡΠ²Π° Π½Π° ΠΌΠ°ΠΊΠ΅Π΄ΠΎΠ½ΡΠΊΠΈ."},
{"role": "user", "content": "ΠΠΎΡΠ° Π΅ ΠΈΡΡΠΎΡΠΈΡΠ°ΡΠ° Π½Π° ΠΡ
ΡΠΈΠ΄?"}
],
"stream": false
}'
```
- Text Completions:
```bash
curl http://localhost:8000/v1/completions \
-H 'Content-Type: application/json' \
-d '{
"prompt": "ΠΠ΄ΡΠ°Π²ΠΎ ΠΠ°ΠΊΠ΅Π΄ΠΎΠ½ΠΈΡΠ°!",
"max_tokens": 128
}'
```
Related project: OpenAI gpt-oss (open-weight models, client compatibility notes). See `https://github.com/openai/gpt-oss`.
### Use with gpt-oss-compatible clients
Point any OpenAI-compatible client to this server.
Example (Python OpenAI SDK environment):
```bash
export OPENAI_API_KEY=dummy
export OPENAI_BASE_URL=http://localhost:8000/v1
```
Example Chat Completions (curl):
```bash
curl "$OPENAI_BASE_URL/chat/completions" \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "mk-llm",
"messages": [
{"role": "system", "content": "Π’ΠΈ ΡΠΈ ΠΏΠΎΠΌΠΎΡΠ½ΠΈΠΊ ΠΊΠΎΡ Π·Π±ΠΎΡΡΠ²Π° Π½Π° ΠΌΠ°ΠΊΠ΅Π΄ΠΎΠ½ΡΠΊΠΈ."},
{"role": "user", "content": "ΠΠΎΡΠ° Π΅ ΠΈΡΡΠΎΡΠΈΡΠ°ΡΠ° Π½Π° ΠΡ
ΡΠΈΠ΄?"}
],
"stream": true
}'
```
|