---
library_name: transformers
license: apache-2.0
license_link: https://huggingface.co/Qwen/Qwen3.6-27B/blob/main/LICENSE
base_model: Qwen/Qwen3.6-27B
pipeline_tag: text-generation
tags:
- dense
- coding
- agentic
- unimodal
- repackaged
---
# Focus
repackaged [Qwen 3.6 27B](https://huggingface.co/Qwen/Qwen3.6-27B) with a simplified architecture and minor opinionated improvements
- all vision-related components removed
- reduced storage and memory, faster inference
- zero loss of output quality
## comparison
|
Qwen 3.6 27B |
Focus |
| author |
Alibaba Qwen |
Jaid |
| repository |
Qwen/Qwen3.6-27B |
Jaidchen/Focus |
| architecture |
qwen3_5 |
qwen3_5_text |
| Transformers handler |
Qwen3_5ForConditionalGeneration
|
Qwen3_5ForCausalLM
|
| tensor entries |
1199 |
866 |
| tensor type |
bf16 |
bf16 |
| parameters |
27 781 427 952 |
27 320 697 856 |
| vocabulary size |
248 320 |
248 320 |
| context size |
262 144 |
262 144 |
| MTP |
integrated |
integrated |
| sampling strategy |
random sampling |
greedy/deterministic |
| sampling parameters |
do_sample: true
temperature: 0.6
top_k: 20
top_p: 0.95
|
do_sample: false
|
| input modality |
text, image, video |
text |
| repository size |
55 586 101 650 |
54 664 408 333 |
| model size |
55 562 855 904 |
54 641 395 712 |
| splits |
11 |
none |
| Jinja template |
Qwen original |
Qwen original + Unsloth tweaks + custom unimodality patch |
## pros
- reduced storage needs
- reduced loading time
- reduced VRAM occupancy, thus more room for context
- increased inference speed
- simplified architecture, unlocking some further potential for optimizing low-level procedures
## cons
- legally blind
- Pictures and video frames can still be present in the context without crashing, but their contents are no longer interpreted by the model and won’t do anything else than waste space.
- If you occasionally rely on those capabilities, I suggest adding a `consult` tool to your harness that calls a vision-enabled subagent model like [Gemini Flash](https://openrouter.ai/~google/gemini-flash-latest) or [GPT](https://openrouter.ai/~openai/gpt-latest).
- reduced compatibility
- The applied coercions may confuse your inference engine in case it has fixed expectations about the model’s architecture and thus lead to unpredictable behavior.
- The simplified architecture is handled by the `Qwen3_5ForCausalLM` class which may not be included in your inference engine. In this case you would need to ask your agent or integrate it yourself.
## caveats
- model file not split, possibly causing issues if intended to be stored on an HDD from the previous century
- random sampling disabled by default, less suitable for long-form writing, entertainment and casual chat
## license
Apache 2.0, derived from [Qwen 3.6 27B](https://huggingface.co/Qwen/Qwen3.5-27B/blob/main/LICENSE)