Isaak Carter Augustus
2d5fba171398440522ba841437823b19840dcba0c22d3e927ce52505a0428233
d7d449c verified
|
raw
history blame
719 Bytes
---
library_name: transformers
license: llama3.1
tags:
- mlx
---
# mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-4bit
The Model [mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-4bit](https://huggingface.co/mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-4bit) was converted to MLX format from [mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated](https://huggingface.co/mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated) using mlx-lm version **0.16.1**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-4bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```