Views
No views yet
| Base | Qwen3.6-27B-OBLITERATED |
| Architecture | qwen3_5 (mixed linear + full attention) |
| Parameters | 26.9B |
| Quantization | 4-bit affine, group_size 64 |
| Format | MLX safetensors (3 shards, ~14 GB) |
| Context window | 262,144 tokens |
| Tokenizer | Qwen2Tokenizer with tool-call support |
pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("edward-lcl/Qwen3.6-27B-OBLITERATED-MLX-4bit")
4response = generate(model, tokenizer, prompt="Your prompt here", max_tokens=512)
5print(response)1mlx_lm.generate \
2 --model edward-lcl/Qwen3.6-27B-OBLITERATED-MLX-4bit \
3 --prompt "Your prompt here" \
4 --max-tokens 512| Temperature | 0.35 |
| Repetition penalty | 1.05 |
| top_p | 1.0 |
chat_template.jinja with full tool-call formatting