prince-canuma's picture
af59a61231b32e73e2c60e1bab76e22f62270a13b47b6da3ccad5c68f1874cdd
0db435f verified
|
raw
history blame
612 Bytes
metadata
language:
  - en
license: apache-2.0
tags:
  - chat
  - mlx
pipeline_tag: text-generation

mlx-community/Qwen2-7B-Instruct-8bit

The Model mlx-community/Qwen2-7B-Instruct-8bit was converted to MLX format from Qwen/Qwen2-7B-Instruct using mlx-lm version 0.14.0.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Qwen2-7B-Instruct-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)