Text Generation
Transformers
PyTorch
Safetensors
PEFT
Macedonian
opt
macedonian
cyrillic
mistral
qlora
text-generation-inference
Instructions to use ainowmk/MK-LLM-Mistral with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ainowmk/MK-LLM-Mistral with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ainowmk/MK-LLM-Mistral")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ainowmk/MK-LLM-Mistral") model = AutoModelForCausalLM.from_pretrained("ainowmk/MK-LLM-Mistral", device_map="auto") - PEFT
How to use ainowmk/MK-LLM-Mistral with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ainowmk/MK-LLM-Mistral with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ainowmk/MK-LLM-Mistral" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ainowmk/MK-LLM-Mistral", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ainowmk/MK-LLM-Mistral
- SGLang
How to use ainowmk/MK-LLM-Mistral with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ainowmk/MK-LLM-Mistral" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ainowmk/MK-LLM-Mistral", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ainowmk/MK-LLM-Mistral" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ainowmk/MK-LLM-Mistral", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ainowmk/MK-LLM-Mistral with Docker Model Runner:
docker model run hf.co/ainowmk/MK-LLM-Mistral
| from transformers import AutoModelForCausalLM, AutoTokenizer | |
| import torch | |
| import os | |
| import json | |
| def evaluate_perplexity(model_path: str, eval_file: str) -> float: | |
| tokenizer = AutoTokenizer.from_pretrained(model_path) | |
| model = AutoModelForCausalLM.from_pretrained(model_path, torch_dtype=torch.float16, device_map="auto") | |
| with open(eval_file, 'r', encoding='utf-8') as f: | |
| text = f.read() | |
| enc = tokenizer(text, return_tensors='pt') | |
| with torch.no_grad(): | |
| loss = model(**{k: v.to(model.device) for k, v in enc.items()}, labels=enc["input_ids"].to(model.device)).loss | |
| ppl = torch.exp(loss).item() | |
| print(f"Perplexity: {ppl:.2f}") | |
| return ppl | |
| if __name__ == "__main__": | |
| model_path = os.getenv("MODEL_PATH", "./models/mistral-finetuned-mk") | |
| eval_file = os.getenv("EVAL_FILE", "data/cleaned/mk_combined_data.txt") | |
| evaluate_perplexity(model_path, eval_file) | |
| # Simple QA accuracy on small Macedonian eval | |
| qa_file = os.getenv("QA_EVAL_FILE", "data/eval/mk_eval.jsonl") | |
| if os.path.exists(qa_file): | |
| tokenizer = AutoTokenizer.from_pretrained(model_path) | |
| model = AutoModelForCausalLM.from_pretrained(model_path, torch_dtype=torch.float16, device_map="auto") | |
| correct = 0 | |
| total = 0 | |
| with open(qa_file, 'r', encoding='utf-8') as f: | |
| for line in f: | |
| item = json.loads(line) | |
| q = item["question"] | |
| gt = item["answer"].strip() | |
| prompt = f"Прашање: {q}\nОдговор:" | |
| inputs = tokenizer(prompt, return_tensors='pt').to(model.device) | |
| with torch.no_grad(): | |
| out = model.generate(**inputs, max_new_tokens=64) | |
| pred = tokenizer.decode(out[0], skip_special_tokens=True) | |
| # naive check | |
| is_correct = gt.lower() in pred.lower() | |
| correct += 1 if is_correct else 0 | |
| total += 1 | |
| if total: | |
| acc = correct / total * 100 | |
| print(f"QA accuracy on mk_eval.jsonl: {acc:.1f}% ({correct}/{total})") | |