Qubitium's picture
Update README.md (#3)
d7a5f49 verified

This model was quantized and exported to mlx using GPTQModel.

How to run this model

# install mlx
pip install mlx_lm
from mlx_lm import load, generate

mlx_path = "ModelCloud/Qwen2.5-Coder-32B-Instruct-gptqmodel-4bit-vortex-mlx-v1"
mlx_model, tokenizer = load(mlx_path)
prompt = "The capital of France is"

)

text = generate(mlx_model, tokenizer, prompt=prompt, verbose=True)

Export gptq to mlx

# install gptqmodel with mlx
pip install gptqmodel[mlx] --no-build-isolation
from gptqmodel import GPTQModel

# load gptq quantized model
gptq_model_path = "ModelCloud/Qwen2.5-Coder-32B-Instruct-gptqmodel-4bit-vortex-v1"
mlx_path = f"./vortex/ModelCloud/Qwen2.5-Coder-32B-Instruct-gptqmodel-4bit-vortex-mlx-v1"

# export to mlx model
GPTQModel.export(gptq_model_path, mlx_path, "mlx")