|
--- |
|
base_model: Qwen/Qwen2.5-1.5B |
|
language: |
|
- en |
|
license: apache-2.0 |
|
license_link: https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct/blob/main/LICENSE |
|
pipeline_tag: text-generation |
|
tags: |
|
- chat |
|
- mlx |
|
--- |
|
|
|
# mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-2bit |
|
|
|
The Model [mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-2bit](https://huggingface.co/mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-2bit) was converted to MLX format from [Goekdeniz-Guelmez/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1](https://huggingface.co/Goekdeniz-Guelmez/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1) using mlx-lm version **0.13.1**. |
|
|
|
## Use with mlx |
|
|
|
```bash |
|
pip install mlx-lm |
|
``` |
|
|
|
```python |
|
from mlx_lm import load, generate |
|
|
|
model, tokenizer = load("mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-2bit") |
|
response = generate(model, tokenizer, prompt="hello", verbose=True) |
|
``` |
|
|