Isaak Carter Augustus
b93782f2ad9bc64347d0ea4604127f2870baeb8e73d9186827d43e328157455e
03f35f7 verified
|
raw
history blame
No virus
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-4bit
The Model [mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-4bit](https://huggingface.co/mlx-community/Josiefied-Qwen2.5-1.5B-Instruct-abliterated-v1-4bit) 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-4bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```