glacio-dev/Qwen1.5-4B-Chat-Q4
027
glacio-dev/Qwen1.5-4B-Chat-Q4
This model was converted to MLX format from [Qwen/Qwen1.5-4B-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("glacio-dev/Qwen1.5-4B-Chat-Q4")
response = generate(model, tokenizer, prompt="hello", verbose=True)