maxrubin629's picture
Upload README.md with huggingface_hub
063d164 verified
---
library_name: transformers
datasets:
- BAAI/TACO
- tasksource/PRM800K
language:
- en
base_model: NovaSky-AI/Sky-T1-32B-Flash
license: apache-2.0
tags:
- mlx
---
# maxrubin629/Sky-T1-32B-Flash-Q4-mlx
The Model [maxrubin629/Sky-T1-32B-Flash-Q4-mlx](https://huggingface.co/maxrubin629/Sky-T1-32B-Flash-Q4-mlx) was converted to MLX format from [NovaSky-AI/Sky-T1-32B-Flash](https://huggingface.co/NovaSky-AI/Sky-T1-32B-Flash) using mlx-lm version **0.19.1**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("maxrubin629/Sky-T1-32B-Flash-Q4-mlx")
prompt="hello"
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
```