Goekdeniz-Guelmez's picture
9e46b2da969a8ce29e2b459d3edc4015650b8664fef27c3cd11a0fe0e78ee0ef
b4cd8d5 verified
|
raw
history blame
914 Bytes
---
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-8bit
The Model [mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-8bit](https://huggingface.co/mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-8bit) was converted to MLX format from [Isaak-Carter/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1](https://huggingface.co/Isaak-Carter/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-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```