Update __init__.py

This commit is contained in:
Kohaku-Blueleaf 2025-07-22 16:33:45 +08:00
parent 545cb2187c
commit bf053a9c55

View File

@ -19,11 +19,13 @@ adapter_maps: dict[str, type[WeightAdapterBase]] = {
"LoRA": LoRAAdapter, "LoRA": LoRAAdapter,
"LoHa": LoHaAdapter, "LoHa": LoHaAdapter,
"LoKr": LoKrAdapter, "LoKr": LoKrAdapter,
"GLoRA": GLoRAAdapter, ## We disable not implemented algo for now
"OFT": OFTAdapter, # "GLoRA": GLoRAAdapter,
"BOFT": BOFTAdapter, # "OFT": OFTAdapter,
# "BOFT": BOFTAdapter,
} }
__all__ = [ __all__ = [
"WeightAdapterBase", "WeightAdapterBase",
"WeightAdapterTrainBase", "WeightAdapterTrainBase",