Model: mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-f16 Source: Original Platform
29 lines
920 B
Markdown
29 lines
920 B
Markdown
---
|
|
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-f16
|
|
|
|
The Model [mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-f16](https://huggingface.co/mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-f16) 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-f16")
|
|
response = generate(model, tokenizer, prompt="hello", verbose=True)
|
|
```
|