doreilly257's picture
87cfe1dff1aad1d818dbe8adc1e8584d832f734f6a8595bd3df0a9a239fd378a
f98ea7f verified
|
raw
history blame
No virus
550 Bytes
---
language:
- fr
- en
- de
- es
- it
license: apache-2.0
tags:
- mlx
---
# doreilly257/PleIAs-OCRonos-MLX-Q6_K_M
This model was converted to MLX format from [`PleIAs/OCRonos`]() using mlx-lm version **0.12.1**.
Refer to the [original model card](https://huggingface.co/PleIAs/OCRonos) for more details on the model.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("doreilly257/PleIAs-OCRonos-MLX-Q6_K_M")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```