Activated LoRA (aLoRA) is a low rank adapter architecture that allows reusing existing base model KV cache, built on top of PEFT. Version 0.3.0 is current; pre-1.0 release cadence is intermittent.
pip install aloraNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Instantiate aLoraConfig, wrap a base model with AloraModel, and generate text.
Update any custom subclass to use PeftModel instead of LoraModel, or pin alora==0.2.0.
Ensure bitsandbytes is installed and use from peft.import_utils import is_bnb_available instead of direct bnb imports.
Always call with an instantiated model object: AloraModel(model, config), not AloraModel('model_name', config).