In LoRA, the update is scaled by α/r. What does decoupling α from r let you do?
- Change rank without rescaling the update
- Freeze more layers as rank rises
- Skip initializing B to zero
- Quantize the adapter automatically
Why
Because the effective scale is α/r, raising r while keeping α/r roughly constant keeps the update magnitude stable, so you can sweep rank without re-tuning learning rate. It doesn't change freezing, initialization, or quantization.