typorch's picture
Upload folder using huggingface_hub (#1)
1a5f705 verified
|
raw
history blame
No virus
804 Bytes
---
base_model: meta-llama/Meta-Llama-3.1-8B-Instruct
library_name: transformers
license: llama3.1
tags:
- abliterated
- uncensored
- mlx
---
# mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-Q4-MLX
The Model [mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-Q4-MLX](https://huggingface.co/mlx-community/Meta-Llama-3.1-8B-Instruct-abliterated-Q4-MLX) 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.17.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-Q4-MLX")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```