ivanfioravanti's picture
2241df5538d25aba23137ba14d02d85a113d3e94349ba00f1bc1786873b34d5e
bcb9597 verified
|
raw
history blame
1.13 kB
metadata
license: apache-2.0
license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-32B-Instruct/blob/main/LICENSE
language:
  - en
base_model: Qwen/Qwen2.5-Coder-32B-Instruct
pipeline_tag: text-generation
library_name: transformers
tags:
  - code
  - codeqwen
  - chat
  - qwen
  - qwen-coder
  - mlx

mlx-community/Qwen2.5-Coder-32B-Instruct-3bit

The Model mlx-community/Qwen2.5-Coder-32B-Instruct-3bit was converted to MLX format from Qwen/Qwen2.5-Coder-32B-Instruct using mlx-lm version 0.19.3.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Qwen2.5-Coder-32B-Instruct-3bit")

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)