File size: 988 Bytes
277700f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
license: other
tags:
- mlx
base_model: 01-ai/yi-34b-200k
datasets:
- jondurbin/airoboros-3.2
- bluemoon-fandom-1-1-rp-cleaned
- boolq
- jondurbin/gutenberg-dpo-v0.1
- LDJnr/Capybara
- jondurbin/cinematika-v0.1
- glaiveai/glaive-function-calling-v2
- grimulkan/LimaRP-augmented
- piqa
- Vezora/Tested-22k-Python-Alpaca
- mattpscott/airoboros-summarization
- unalignment/toxic-dpo-v0.2
license_name: yi-license
license_link: https://huggingface.co/01-ai/Yi-34B-200K/blob/main/LICENSE
---

# voxmenthe/airoboros-34b-3.3-mlx-4bit
This model was converted to MLX format from [`jondurbin/airoboros-34b-3.3`]() using mlx-lm version **0.6.0**.
Refer to the [original model card](https://huggingface.co/jondurbin/airoboros-34b-3.3) for more details on the model.
## Use with mlx

```bash
pip install mlx-lm
```

```python
from mlx_lm import load, generate

model, tokenizer = load("voxmenthe/airoboros-34b-3.3-mlx-4bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```