Qwen3-8B-Gemini-3-Pro-Preview-Distill-1000x-qx86-hi-mlx
0.387,0.454,0.602,0.603,0.346,0.726,0.597
This model Qwen3-8B-Gemini-3-Pro-Preview-Distill-1000x-qx86-hi-mlx was converted to MLX format from TeichAI/Qwen3-8B-Gemini-3-Pro-Preview-Distill-1000x using mlx-lm version 0.29.0.
Use with mlx
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("Qwen3-8B-Gemini-3-Pro-Preview-Distill-1000x-qx86-hi-mlx")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
- Downloads last month
- 132