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") - PEFT
How to use ainowmk/MK-LLM-Mistral with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- 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
Commit History
Updates on readme 4d7bf1f verified
Upload 65 files f29d474 verified
Upload README.md with huggingface_hub 1c5f279 verified
Upload README.md with huggingface_hub 0014867 verified
Upload vocab.json with huggingface_hub 94ff6e7 verified
Upload tokenizer_config.json with huggingface_hub faedf5d verified
Upload tokenizer.json with huggingface_hub ae64bab verified
Upload special_tokens_map.json with huggingface_hub cbfdca7 verified
Upload README.md with huggingface_hub 2756a66 verified
Upload model.safetensors with huggingface_hub 4bf8b85 verified
Upload merges.txt with huggingface_hub 1bc3b2a verified
Upload generation_config.json with huggingface_hub bccf114 verified
Upload config.json with huggingface_hub 4225606 verified
Update README.md a0b5d18 verified
Update README.md 6462828 verified
Update README.md d8d0d92 verified
Upload MK-LLM-Mistral model weights 77267ac
bxlogic commited on