Text Generation
Transformers
Safetensors
qwen3_5
image-text-to-text
text-generation-inference
unsloth
qwen3_6
reasoning
chain-of-thought
lora
sft
agent
tool-use
function-calling
coder
conversational

Have you considered RYS?

#4
by Diablo-D3 - opened

https://dnhkng.github.io/posts/rys/
https://dnhkng.github.io/posts/rys-ii/
https://dnhkng.github.io/posts/sapir-whorf/

Basically, it is a technique to duplicate the reasoning layers, and touching nothing else.

git clone https://github.com/dnhkng/RYS
cd RYS
uv venv
source .venv/bin/activate
uv run python3 -m hf_export.export_model --source /path/to/Qwopus3.6-27B-Coder/ --output /path/to/Qwopus3.6-27B-Coder-RYS-XL/ --blocks "26,34"

Note: Qwen3.6 needs to duplicate 4 layers at a time. (31,34) does most of the heavy lifting, but doing (26,30) seems to also improve it. Also, apparently people do the fine tuning after RYS, not before, and see better improvements than if they had RYS'd their fine tune.

Also, tokenizer_class is set wrong in your tokenizer_config.json, it should be set to Qwen2Tokenizer.

Wow! These are some impressive findings!

Sign up or log in to comment