Skip to content

Commit 2cb7f6c

Browse files
authored
Merge pull request #14 from silveroxides/feature/dora-extract
Feature/dora extract
2 parents b7365bf + 3a505e7 commit 2cb7f6c

3 files changed

Lines changed: 1785 additions & 0 deletions

File tree

__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
LoRAExtractFixed, LoRAExtractRatio, LoRAExtractQuantile,
2525
LoRAExtractKnee, LoRAExtractFrobenius
2626
)
27+
from .nodes.dora_extract_wd import (
28+
DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile,
29+
DoRAExtractKnee, DoRAExtractFrobenius
30+
)
31+
from .nodes.dora_learned_wd import (
32+
DoRALearnedExtractFixed, DoRALearnedExtractRatio, DoRALearnedExtractQuantile,
33+
DoRALearnedExtractKnee, DoRALearnedExtractFrobenius
34+
)
2735
from .nodes.lora_resize import (
2836
LoRAResizeFixed, LoRAResizeRatio,
2937
LoRAResizeFrobenius, LoRAResizeCumulative,
@@ -61,6 +69,12 @@ async def get_node_list(self) -> list[type[io.ComfyNode]]:
6169
# LoRA Extraction
6270
LoRAExtractFixed, LoRAExtractRatio, LoRAExtractQuantile,
6371
LoRAExtractKnee, LoRAExtractFrobenius,
72+
# DoRA Extraction
73+
DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile,
74+
DoRAExtractKnee, DoRAExtractFrobenius,
75+
# Learned DoRA Extraction
76+
DoRALearnedExtractFixed, DoRALearnedExtractRatio, DoRALearnedExtractQuantile,
77+
DoRALearnedExtractKnee, DoRALearnedExtractFrobenius,
6478
# LoRA Resize
6579
LoRAResizeFixed, LoRAResizeRatio,
6680
LoRAResizeFrobenius, LoRAResizeCumulative,

0 commit comments

Comments
 (0)