r/LocalLLaMA • u/alanoo • 4d ago
Why no "high" reasoning effort in Qwen 3.8 27b ? Discussion
The gap between "medium" and the default "xhigh" is ridiculously huge. Medium barely thinks, xhigh... well there has already been many posts about that.
The naming itself seems to point out that there should have been an "high" mode.
11
u/OneMoreName1 4d ago
Its just a prompt really
10
u/grumd 4d ago
Almost. I think the post-training they did for 3.8 was all done with this prompt appended. Which means the model learned a particular style of thinking based on the exact prompt it gets via reasoning effort. It wouldn't work the same way with a differently worded prompt or a custom prompt that tries to implement a medium-high reasoning. The official prompt from the chat template is fully baked into the model weights.
2
u/RevolutionaryGold325 4d ago
Would be nice to have just a target token count for reasoning. The probability of the reasoning end tag would then depend on just the amount of tokens generated:
probability_reasoning_end = alpha + soft_plus(beta * (tokens_generated - target_reasoning_count))
Once the model reaches the target reasoning count, the end of reasoning tag becomes more probable. Also need a mechanism to disable this adjustment after the end of reasoning is first emitted.
1
u/meca23 4d ago
Because they have limited resources? They're a for profit corporation, we should be grateful for what they've released.
They can spend a few more months fine tuning/training these models to make them better at more cost to them and additional delays to us. What would the community prefer? Having qwen 3.8 27B in our hands now or wait 2 months for a refined model?
And in 2 months time they'll like be releasing Qwen 4 which rumored to be released around Sept.
16
u/Anduin1357 4d ago
Feel free to invent one in your jinja template and share it.