Whats layerdose?

#1
by djuna - opened

Hi,
Any more info about this?

Owner

Hi, this is just a personal LayerDose experiment, not a model Iโ€™d recommend running yet.

The idea was to test whether some low-risk linear_attn operators in Qwen3.6-27B could be replaced with much smaller rank-64 patch modules. In plain terms: instead of keeping every original operator tensor, I replace selected low-impact operators with compact learned patches that try to approximate their effect. That cuts checkpoint storage and should reduce some compute, while hopefully keeping behavior close to the original model.

For this test build, the replaced tensors save about 3.28 GB before adding the small patch file, and the early speed result is around 10% faster. The small smoke checks looked okay, but this is not a full benchmark or a finished release. It also needs the LayerDose patch loader to activate the replacements, so a normal from_pretrained() load is not enough.

So short version: it is an experimental compression/replacement candidate. Interesting for research, but nothing worth depending on yet.

Sign up or log in to comment