|
24 | 24 | LoRAExtractFixed, LoRAExtractRatio, LoRAExtractQuantile, |
25 | 25 | LoRAExtractKnee, LoRAExtractFrobenius |
26 | 26 | ) |
| 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 | +) |
27 | 35 | from .nodes.lora_resize import ( |
28 | 36 | LoRAResizeFixed, LoRAResizeRatio, |
29 | 37 | LoRAResizeFrobenius, LoRAResizeCumulative, |
@@ -61,6 +69,12 @@ async def get_node_list(self) -> list[type[io.ComfyNode]]: |
61 | 69 | # LoRA Extraction |
62 | 70 | LoRAExtractFixed, LoRAExtractRatio, LoRAExtractQuantile, |
63 | 71 | LoRAExtractKnee, LoRAExtractFrobenius, |
| 72 | + # DoRA Extraction |
| 73 | + DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile, |
| 74 | + DoRAExtractKnee, DoRAExtractFrobenius, |
| 75 | + # Learned DoRA Extraction |
| 76 | + DoRALearnedExtractFixed, DoRALearnedExtractRatio, DoRALearnedExtractQuantile, |
| 77 | + DoRALearnedExtractKnee, DoRALearnedExtractFrobenius, |
64 | 78 | # LoRA Resize |
65 | 79 | LoRAResizeFixed, LoRAResizeRatio, |
66 | 80 | LoRAResizeFrobenius, LoRAResizeCumulative, |
|
0 commit comments