Views
No views yet
jica98/qwen3.5-4B-super-coder.
The source repo only ships the LoRA adapter and GGUF exports, so this was built by:unsloth/Qwen3.5-4Bjica98/qwen3.5-4B-super-coder LoRA adapter with Qwen3_5ForConditionalGenerationmlx-lm
No additional training was done.1pip install -U mlx-lm
2mlx_lm.generate \
3 --model snsnc/qwen3.5-4B-super-coder-MLX-4bit \
4 --max-tokens 2048 \
5 --temp 0.7 \
6 --top-p 0.8 \
7 --top-k 20 \
8 --chat-template-config '{"enable_thinking":false}' \
9 --prompt "Write only executable Python code. Implement an async token-bucket rate limiter."
10
11Thinking is enabled by the upstream chat template unless explicitly disabled.