Koutouzov1973/Qwen1.5-0.5B-Generex
010
mlx-community/Qwen1.5-0.5B-Chat
This model was converted to MLX format from [Qwen/Qwen1.5-0.5B-Chat](). Refer to the original model card for more details on the model.
Use with mlx
pip install mlx-lmfrom mlx_lm import load, generate
model, tokenizer = load("mlx-community/Qwen1.5-0.5B-Chat")
response = generate(model, tokenizer, prompt="hello", verbose=True)