stelterlab's picture
1e2733324ca08786ae4144912071aef2a472ad8f03d949b760abb1210499192e
edb1bc1 verified
|
raw
history blame
1.12 kB
---
license: apache-2.0
language:
- en
- de
- es
- fr
- it
- pt
- pl
- nl
- tr
- sv
- cs
- el
- hu
- ro
- fi
- uk
- sl
- sk
- da
- lt
- lv
- et
- bg
- 'no'
- ca
- hr
- ga
- mt
- gl
- zh
- ru
- ko
- ja
- ar
- hi
library_name: transformers
base_model: utter-project/EuroLLM-9B-Instruct
tags:
- mlx
---
# stelterlab/EuroLLM-9B-Instruct-MLX-4bit
The Model [stelterlab/EuroLLM-9B-Instruct-MLX-4bit](https://huggingface.co./stelterlab/EuroLLM-9B-Instruct-MLX-4bit) was converted to MLX format from [utter-project/EuroLLM-9B-Instruct](https://huggingface.co./utter-project/EuroLLM-9B-Instruct) using mlx-lm version **0.19.2**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("stelterlab/EuroLLM-9B-Instruct-MLX-4bit")
prompt="hello"
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
```