Skip to content

Commit 1512fa7

Browse files
committed
Add DoRA extraction nodes
1 parent 5780122 commit 1512fa7

2 files changed

Lines changed: 988 additions & 0 deletions

File tree

__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
LoRAExtractFixed, LoRAExtractRatio, LoRAExtractQuantile,
2525
LoRAExtractKnee, LoRAExtractFrobenius
2626
)
27+
from .nodes.dora_extract_wd import (
28+
DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile,
29+
DoRAExtractKnee, DoRAExtractFrobenius
30+
)
2731
from .nodes.lora_resize import (
2832
LoRAResizeFixed, LoRAResizeRatio,
2933
LoRAResizeFrobenius, LoRAResizeCumulative,
@@ -61,6 +65,9 @@ async def get_node_list(self) -> list[type[io.ComfyNode]]:
6165
# LoRA Extraction
6266
LoRAExtractFixed, LoRAExtractRatio, LoRAExtractQuantile,
6367
LoRAExtractKnee, LoRAExtractFrobenius,
68+
# DoRA Extraction
69+
DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile,
70+
DoRAExtractKnee, DoRAExtractFrobenius,
6471
# LoRA Resize
6572
LoRAResizeFixed, LoRAResizeRatio,
6673
LoRAResizeFrobenius, LoRAResizeCumulative,

0 commit comments

Comments
 (0)