doreilly257's picture
8bf8c58649fb25d5904dd5f7157e9a8b9c46da9614e8e5e4701a8f96936d11b8
a8bcad9 verified
|
raw
history blame
No virus
550 Bytes
---
language:
- fr
- en
- de
- es
- it
license: apache-2.0
tags:
- mlx
---
# doreilly257/PleIAs-OCRonos-MLX-Q4_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-Q4_K_M")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```