Views
No views yet
Qwen/Qwen2.5-7B-Instruct. It was trained with LoRA adapters on Claude Opus/Fable distilled chat data, then merged back into the base model weights for direct MLX loading.mlx-lm.Qwen/Qwen2.5-7B-Instructmlx-lm1632q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj1e-540961.725pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("cjnielson44/grizzly-qwen2.5-7b-opus-distilled")
4response = generate(
5 model,
6 tokenizer,
7 prompt="Explain how placebo effects work, but reason through the mechanisms carefully.",
8 verbose=True,
9)