language: | |
- en | |
license: other | |
library_name: transformers | |
tags: | |
- mlx | |
datasets: | |
- teknium/OpenHermes-2.5 | |
- LDJnr/Capybara | |
- Intel/orca_dpo_pairs | |
- argilla/distilabel-capybara-dpo-7k-binarized | |
pipeline_tag: text-generation | |
# vilm/Quyen-v0.1-mlx | |
This model was converted to MLX format from [`vilm/Quyen-v0.1`](). | |
Refer to the [original model card](https://huggingface.co/vilm/Quyen-v0.1) for more details on the model. | |
## Use with mlx | |
```bash | |
pip install mlx-lm | |
``` | |
```python | |
from mlx_lm import load, generate | |
model, tokenizer = load("vilm/Quyen-v0.1-mlx") | |
response = generate(model, tokenizer, prompt="hello", verbose=True) | |
``` | |