|
28 | 28 | DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile, |
29 | 29 | DoRAExtractKnee, DoRAExtractFrobenius |
30 | 30 | ) |
| 31 | +from .nodes.dora_learned_wd import ( |
| 32 | + DoRALearnedExtractFixed, DoRALearnedExtractRatio, DoRALearnedExtractQuantile, |
| 33 | + DoRALearnedExtractKnee, DoRALearnedExtractFrobenius |
| 34 | +) |
31 | 35 | from .nodes.lora_resize import ( |
32 | 36 | LoRAResizeFixed, LoRAResizeRatio, |
33 | 37 | LoRAResizeFrobenius, LoRAResizeCumulative, |
@@ -68,6 +72,9 @@ async def get_node_list(self) -> list[type[io.ComfyNode]]: |
68 | 72 | # DoRA Extraction |
69 | 73 | DoRAExtractFixed, DoRAExtractRatio, DoRAExtractQuantile, |
70 | 74 | DoRAExtractKnee, DoRAExtractFrobenius, |
| 75 | + # Learned DoRA Extraction |
| 76 | + DoRALearnedExtractFixed, DoRALearnedExtractRatio, DoRALearnedExtractQuantile, |
| 77 | + DoRALearnedExtractKnee, DoRALearnedExtractFrobenius, |
71 | 78 | # LoRA Resize |
72 | 79 | LoRAResizeFixed, LoRAResizeRatio, |
73 | 80 | LoRAResizeFrobenius, LoRAResizeCumulative, |
|
0 commit comments