Isaak Carter Augustus
368510a5e290fcbbd9411f41c08f1a6e117fcaed9f2be7b564f1b915f8de053f
39fecde verified
|
raw
history blame
No virus
719 Bytes
---
library_name: transformers
license: llama3.1
tags:
- mlx
---
# mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-8bit
The Model [mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-8bit](https://huggingface.co/mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-8bit) 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-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```