|
|
---
|
|
|
license: apache-2.0
|
|
|
license_link: https://huggingface.co/Qwen/Qwen2.5-1.5B/blob/main/LICENSE
|
|
|
language:
|
|
|
- zho
|
|
|
- eng
|
|
|
- fra
|
|
|
- spa
|
|
|
- por
|
|
|
- deu
|
|
|
- ita
|
|
|
- rus
|
|
|
- jpn
|
|
|
- kor
|
|
|
- vie
|
|
|
- tha
|
|
|
- ara
|
|
|
pipeline_tag: text-generation
|
|
|
library_name: transformers
|
|
|
tags:
|
|
|
- mlx
|
|
|
base_model: Qwen/Qwen2.5-1.5B
|
|
|
---
|
|
|
|
|
|
# 8ft0/shopping-list
|
|
|
|
|
|
The Model [8ft0/shopping-list](https://huggingface.co/8ft0/shopping-list) was
|
|
|
converted to MLX format from [Qwen/Qwen2.5-1.5B](https://huggingface.co/Qwen/Qwen2.5-1.5B)
|
|
|
using mlx-lm version **0.21.1**.
|
|
|
|
|
|
## Use with mlx
|
|
|
|
|
|
```bash
|
|
|
pip install mlx-lm
|
|
|
```
|
|
|
|
|
|
```python
|
|
|
from mlx_lm import load, generate
|
|
|
|
|
|
model, tokenizer = load("8ft0/shopping-list")
|
|
|
|
|
|
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)
|
|
|
```
|
|
|
|