doreilly257's picture
Upload folder using huggingface_hub (#1)
b76113f verified
|
raw
history blame contribute delete
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)
```