prince-canuma's picture
c23e625a272b4084716898716f9768731ae4f985974352564af2106c47e3df9b
2cfa58d verified
|
raw
history blame
863 Bytes
metadata
base_model:
  - Qwen/Qwen2.5-Coder-1.5B
language:
  - en
library_name: transformers
license: apache-2.0
license_link: https://huggingface.co/Qwen/Qwen2.5-Coder-1.5B-Instruct/blob/main/LICENSE
pipeline_tag: text-generation
tags:
  - code
  - codeqwen
  - chat
  - qwen
  - qwen-coder
  - mlx

mlx-community/Qwen2.5-Coder-1.5B-Instruct-bf16

The Model mlx-community/Qwen2.5-Coder-1.5B-Instruct-bf16 was converted to MLX format from Qwen/Qwen2.5-Coder-1.5B-Instruct using mlx-lm version 0.18.1.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Qwen2.5-Coder-1.5B-Instruct-bf16")
response = generate(model, tokenizer, prompt="hello", verbose=True)