--- language: - en - zh - ko license: apache-2.0 base_model: Jackrong/Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill tags: - unsloth - qwen - qwen3.5 - reasoning - chain-of-thought - distillation - Dense - mlx pipeline_tag: text-generation datasets: - Jackrong/Qwen3.5-reasoning-700x - Roman1111111/gemini-3.1-pro-hard-high-reasoning library_name: mlx --- # Jackrong/MLX-Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill-4bit This model [Jackrong/MLX-Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill-4bit](https://huggingface.co/Jackrong/MLX-Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill-4bit) was converted to MLX format from [Jackrong/Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill](https://huggingface.co/Jackrong/Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill) using mlx-lm version **0.30.7**. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("Jackrong/MLX-Qwen3.5-9B-Gemini-3.1-Pro-Reasoning-Distill-4bit") prompt = "hello" if tokenizer.chat_template is not None: messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True, return_dict=False, ) response = generate(model, tokenizer, prompt=prompt, verbose=True) ```