Buckets:
GLoRA
Generalized Low-Rank Adaptation (GLoRA) is a PEFT method that generalizes LoRA and related approaches. GLoRA decomposes updates into configurable paths (A, B, C, D, E), where each path can use low-rank, vector, constant, or disabled parameterization depending on the path.
GLoRA is especially useful for research and advanced applications where you want to experiment with structured update patterns and combine multiple adaptation mechanisms in a single layer.
At a high level, GLoRA modifies a frozen linear layer with:
where each path is independently parameterized.
GloraConfig[[peft.GloraConfig]]
peft.GloraConfig[[peft.GloraConfig]]
This is the configuration class to store the configuration of a GloraModel.
Glora modifies a frozen linear layer W0 as: W_eff = W0 + W0 * A + B and b_eff = b0 + b0 * D + E + W0 @ C.
Each matrix (A, B, C, D, E) can be parameterized independently. The config values control how many parameters are used and what shapes they can express:
lora: Low-rank decompositionXd @ Xuwith shapes(out, r)and(r, in). Usesr * (out + in)parameters and can express any rank-r correction. Like standard LoRA.vector: A single column vector of shape(out, 1), broadcast across the full matrix. Usesoutparameters; only per-output-channel scaling or shifts.constant: A single scalar shared across all elements. Uses 1 parameter; most constrained.none: Zeros, no trainable parameters. Effectively disables this path.
Parameters:
r (int) : Rank of the low-rank decomposition used when a config is set to lora.
target_modules (Optional[Union[List[str], str]]) : The names of the modules to apply Glora to.
config_A_B (str) : Parameterization for the A and B matrices (weight multiplicative and additive corrections). Valid values: lora, vector, constant, none.
config_C (str) : Parameterization for the C matrix (weight-to-bias coupling: b += W0 @ C). Valid values: lora, vector, none.
config_D_E (str) : Parameterization for the D and E scalars (bias multiplicative and additive corrections). Does not support lora since D and E are bias-sized vectors, not matrices. Valid values: vector, constant, none.
init_weights (bool) : If True (default), initialize GLoRA as a no-op (zeros). If False, use kaiming initialization so the adapter is not a no-op.
Key Configuration Options
r: Rank used when a path is configured as"lora"(default:8).target_modules: List or regex of module names to adapt (e.g.,["q_proj", "v_proj"]).config_A_B: Path type for A and B ("lora", "vector", "constant", "none").config_C: Path type for C ("lora", "vector", "none").config_D_E: Path type for D and E ("constant", "vector", "none").bias: Bias handling ("none","all", or"glora_only").init_weights: IfTrue(default), GLoRA is initialized as a no-op. IfFalse, uses kaiming initialization.
Notes:
config_D_Edoes not support"lora".target_modulescan be omitted for supported model types (PEFT default mappings are used).
GloraModel[[peft.GloraModel]]
peft.GloraModel[[peft.GloraModel]]
Creates Generalized Low Rank Adapter (GLoRA) model from a pretrained transformers model.
- Wraps a base model and injects GLoRA adapters into the specified modules.
- Supports multiple adapters, adapter switching, merging/unmerging, and mixed-batch inference.
- Use
set_adapter,merge_and_unload, and related methods for adapter management.
GloraLayer and GloraLinear[[peft.tuners.glora.GloraLayer]]
peft.tuners.glora.GloraLayer[[peft.tuners.glora.GloraLayer]]
peft.tuners.glora.GloraLinear[[peft.tuners.glora.GloraLinear]]
GLoRA adapter wrapping a dense ~torch.nn.Linear base_layer.
GloraLayeris the core logic for generalized low-rank adaptation, supporting multiple adapters and flexible path configs.GloraLinearis a drop-in replacement fornn.Linearwith GLoRA support.- GLoRA currently supports plain
torch.nn.Linearbase layers.
Example Usage
from transformers import AutoModelForCausalLM
from peft import GloraConfig, get_peft_model
model = AutoModelForCausalLM.from_pretrained("your-model-id")
glora_config = GloraConfig(
r=8,
target_modules=["q_proj", "v_proj"],
config_A_B="lora",
config_C="vector",
config_D_E="constant",
task_type="CAUSAL_LM",
)
model = get_peft_model(model, glora_config)
model.print_trainable_parameters()
# Switch adapters, merge, etc.
model.set_adapter("default")
model.merge_and_unload()
Notes
- GLoRA is a superset of LoRA: setting all paths to "lora" recovers standard LoRA.
- You can use different path types for A/B/C/D/E to experiment with new adaptation strategies.
- GLoRA supports all standard PEFT adapter management features (add, delete, switch, merge, etc).
- For unsupported module types, set
target_modulesto linear projections only.
See Also
Xet Storage Details
- Size:
- 5.75 kB
- Xet hash:
- 0526c45a0b807166247dacb6097003f06c0dcfaa4dd6774d34177eab67b27155
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.