From bf053a9c552f29fc16b024f45e5276c9569a731c Mon Sep 17 00:00:00 2001 From: Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> Date: Tue, 22 Jul 2025 16:33:45 +0800 Subject: [PATCH] Update __init__.py --- comfy/weight_adapter/__init__.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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",