Qwen2.5-3B-bf16 / README.md
prince-canuma's picture
867f7994fc80da1a7ae67b87b9912a231749256e60b288ba48763563e9f49532
fb6908b verified
|
raw
history blame
657 Bytes
metadata
language:
  - en
license: other
license_name: qwen-research
license_link: https://huggingface.co/Qwen/Qwen2.5-3B/blob/main/LICENSE
pipeline_tag: text-generation
tags:
  - mlx

mlx-community/Qwen2.5-3B-bf16

The Model mlx-community/Qwen2.5-3B-bf16 was converted to MLX format from Qwen/Qwen2.5-3B 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-3B-bf16")
response = generate(model, tokenizer, prompt="hello", verbose=True)