XBai-o4-4bit-DWQ / README.md
ivanfioravanti's picture
Add files using upload-large-folder tool
7614e1e verified
|
raw
history blame
821 Bytes
---
license: apache-2.0
base_model: MetaStoneTec/XBai-o4
pipeline_tag: text-generation
tags:
- mlx
library_name: mlx
---
# mlx-community/XBai-o4-4bit-DWQ
This model [mlx-community/XBai-o4-4bit-DWQ](https://huggingface.co/mlx-community/XBai-o4-4bit-DWQ) was
converted to MLX format from [MetaStoneTec/XBai-o4](https://huggingface.co/MetaStoneTec/XBai-o4)
using mlx-lm version **0.26.2**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/XBai-o4-4bit-DWQ")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
```