You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all linear layers that are specified in our training config to be adapted for Lora are converted to type LoraLinearLayer. There might be cases, where different matrices are combined into one linear layer for efficiency (e.g. q, k, v in the attention layer are combined in a single layer q_k_v). Such layers have to be treated differently and should therefore be converted to LoraMergedLinearLayer instead.
Motivation
The text was updated successfully, but these errors were encountered:
Feature request
Currently, all linear layers that are specified in our training config to be adapted for Lora are converted to type LoraLinearLayer. There might be cases, where different matrices are combined into one linear layer for efficiency (e.g. q, k, v in the attention layer are combined in a single layer q_k_v). Such layers have to be treated differently and should therefore be converted to LoraMergedLinearLayer instead.
Motivation
The text was updated successfully, but these errors were encountered: