diff --git a/comfy/weight_adapter/__init__.py b/comfy/weight_adapter/__init__.py index bb5247701..928b1e611 100644 --- a/comfy/weight_adapter/__init__.py +++ b/comfy/weight_adapter/__init__.py @@ -19,11 +19,13 @@ adapter_maps: dict[str, type[WeightAdapterBase]] = { "LoRA": LoRAAdapter, "LoHa": LoHaAdapter, "LoKr": LoKrAdapter, - "GLoRA": GLoRAAdapter, - "OFT": OFTAdapter, - "BOFT": BOFTAdapter, + ## We disable not implemented algo for now + # "GLoRA": GLoRAAdapter, + # "OFT": OFTAdapter, + # "BOFT": BOFTAdapter, } + __all__ = [ "WeightAdapterBase", "WeightAdapterTrainBase",