pipeline_tag: text-generation | |
language: | |
- multilingual | |
inference: false | |
license: cc-by-nc-4.0 | |
library_name: transformers | |
base_model: jinaai/reader-lm-1.5b | |
tags: | |
- mlx | |
# mlx-community/reader-lm-1.5b | |
The Model [mlx-community/reader-lm-1.5b](https://huggingface.co/mlx-community/reader-lm-1.5b) was | |
converted to MLX format from [jinaai/reader-lm-1.5b](https://huggingface.co/jinaai/reader-lm-1.5b) | |
using mlx-lm version **0.21.0**. | |
## Use with mlx | |
```bash | |
pip install mlx-lm | |
``` | |
```python | |
from mlx_lm import load, generate | |
model, tokenizer = load("mlx-community/reader-lm-1.5b") | |
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) | |
``` | |