pipeline_tag: text-generation | |
language: | |
- multilingual | |
inference: false | |
license: cc-by-nc-4.0 | |
library_name: transformers | |
tags: | |
- mlx | |
base_model: jinaai/ReaderLM-v2 | |
# alexgusevski/ReaderLM-v2-q3-mlx | |
The Model [alexgusevski/ReaderLM-v2-q3-mlx](https://huggingface.co/alexgusevski/ReaderLM-v2-q3-mlx) was | |
converted to MLX format from [jinaai/ReaderLM-v2](https://huggingface.co/jinaai/ReaderLM-v2) | |
using mlx-lm version **0.21.4**. | |
## Use with mlx | |
```bash | |
pip install mlx-lm | |
``` | |
```python | |
from mlx_lm import load, generate | |
model, tokenizer = load("alexgusevski/ReaderLM-v2-q3-mlx") | |
prompt = "hello" | |
if tokenizer.chat_template is not None: | |
messages = [{"role": "user", "content": prompt}] | |
prompt = tokenizer.apply_chat_template( | |
messages, add_generation_prompt=True | |
) | |
response = generate(model, tokenizer, prompt=prompt, verbose=True) | |
``` | |