Instructions to use WinterCharm/Qwen3.6-35B-A3B-wMix58 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use WinterCharm/Qwen3.6-35B-A3B-wMix58 with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("WinterCharm/Qwen3.6-35B-A3B-wMix58") config = load_config("WinterCharm/Qwen3.6-35B-A3B-wMix58") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use WinterCharm/Qwen3.6-35B-A3B-wMix58 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "WinterCharm/Qwen3.6-35B-A3B-wMix58"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "WinterCharm/Qwen3.6-35B-A3B-wMix58" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use WinterCharm/Qwen3.6-35B-A3B-wMix58 with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "WinterCharm/Qwen3.6-35B-A3B-wMix58"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default WinterCharm/Qwen3.6-35B-A3B-wMix58
Run Hermes
hermes
- OpenClaw new
How to use WinterCharm/Qwen3.6-35B-A3B-wMix58 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "WinterCharm/Qwen3.6-35B-A3B-wMix58"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "WinterCharm/Qwen3.6-35B-A3B-wMix58" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Qwen3.6-35B-A3B — WinterMix58 (MLX)
A 24 GiB mixed-precision MLX quantization of Qwen/Qwen3.6-35B-A3B — built for 32 GB Macs, and the first MLX build of this project to beat the source Dynamic GGUF's imatrix rounding at short context.
Native MLX, no strings attached. Standard MLX affine layout —
bit-identical packing to mx.quantize, no custom kernels, no forked
runtime. Loads in anything that speaks MLX (mlx-vlm, mlx-lm-based
servers, LM Studio) at exactly the speed of any stock-converted model.
The vision tower is fully functional.
Method (brief)
Winter-Mix: sensitivity-informed mixed-precision allocation with hard pins on routing-critical tensors, calibrated error-compensated rounding (GPTQ-family, independent MLX-native implementation), and a diverse long-context calibration mixture engineered for full expert coverage — including multilingual content so language-specialist experts are calibrated rather than silently degraded. Validated against RTN controls, an 8-bit reference, and cross-engine baselines. The full pipeline is not released.
Measured quality
One scoring rule for every row — NLL over the second half of each context window, token-aligned across engines (llama.cpp's native rule). Comparison rows are benchmarked reference points from the same harness, not published artifacts.
| model | GiB | short-2K ppl | long-16K ppl |
|---|---|---|---|
| 8-bit MLX reference | 35 | 6.0275 | 4.6008 |
| WinterMix58 | 24 | 6.0420 | 4.6167 |
| Unsloth UD-Q5_K_XL GGUF (llama.cpp) | 24.8 | 6.0504 | 4.6060 |
| oQ5 (oMLX) | 24 | 6.0806 | 4.6350 |
| oQ4 (oMLX) | 20 | 6.1221 | 4.6934 |
- Beats the source GGUF at short context (−0.14%) at a slightly smaller size; the GGUF keeps a small 16K edge (+0.23%).
- Beats its exact size-peer oQ5 in both bands (−0.63% short, −0.39% long).
- Sits just +0.24% / +0.35% behind the full 8-bit reference — at 11 GiB less.
- Long-context checked to 98K tokens with no depth collapse; multilingual (8-script) parity verified.
Beyond perplexity
Selected using three instruments — NLL, seeded behavioral probes, and direct reading of reasoning traces. On a 30-step state-tracking benchmark with knife-edge conditional rules (5 seeded runs, 50K-token context), WinterMix58 delivered a correct final state in 5 of 5 runs — the only build in the evaluation family to do so, including the 8-bit reference — with zero fabricated figures and zero truncations. Its reasoning traces show scheduled verification passes that resolve forward and catch-and-correct behavior before delivery. Measured generation speed during these runs: ~70 tok/s at 50K context on an M5 Max.
Running on 32 GB Macs
The model occupies 24 GiB; this architecture's KV cache is unusually light (~2 GB per 100K-token session — only 10 of 40 layers are full attention). On a 32 GB machine, raise the GPU wired limit, e.g.:
sudo sysctl iogpu.wired_limit_mb=28672
leaving room for a 100K+ context session. On 48 GB+ machines it runs with no configuration at all.
Provenance & credits
- Base model: Qwen/Qwen3.6-35B-A3B — quantized directly from the BF16 release; Apache 2.0 inherited.
- Bit allocation informed by analysis of the tensor-type metadata in Unsloth's published Dynamic GGUF (metadata analysis only; no weights or code reused).
- Built on MLX / mlx-vlm.
- Quantized end-to-end on a single M5 Max MacBook Pro.
Sibling releases for other Apple-silicon memory tiers: Qwen3.5-122B-A10B-wMix58 / -wMix48 / -wMix68.
Want a Winter-Mix quant of another model? Open a request in the Community tab.
- Downloads last month
- -
5-bit
Model tree for WinterCharm/Qwen3.6-35B-A3B-wMix58
Base model
Qwen/Qwen3.6-35B-A3B