Qwen1.5-MLX-test / README.md
RonanMcGovern's picture
Upload folder using huggingface_hub
1ddfa82 verified
|
raw
history blame contribute delete
No virus
625 Bytes
metadata
language:
  - en
license: other
tags:
  - pretrained
  - mlx
license_name: tongyi-qianwen-research
license_link: https://huggingface.co/Qwen/Qwen1.5-0.5B/blob/main/LICENSE
pipeline_tag: text-generation

Trelis/Qwen1.5-MLX-test

This model was converted to MLX format from Qwen/Qwen1.5-0.5B. Refer to the original model card for more details on the model.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("Trelis/Qwen1.5-MLX-test")
response = generate(model, tokenizer, prompt="hello", verbose=True)