derektu123's picture
Upload folder using huggingface_hub (#1)
02d0ad7 verified
---
language:
- zh
- en
license: apache-2.0
pipeline_tag: text-generation
tags:
- mlx
---
# derektu123/Breeze-7B-32k-Base-v1_0-8bit
The Model [derektu123/Breeze-7B-32k-Base-v1_0-8bit](https://huggingface.co/derektu123/Breeze-7B-32k-Base-v1_0-8bit) was converted to MLX format from [MediaTek-Research/Breeze-7B-32k-Base-v1_0](https://huggingface.co/MediaTek-Research/Breeze-7B-32k-Base-v1_0) using mlx-lm version **0.14.3**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("derektu123/Breeze-7B-32k-Base-v1_0-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```