|
20 | 20 | ConditioningTimestepsNode, SetLoraHookKeyframes,
|
21 | 21 | CreateLoraHookKeyframe, CreateLoraHookKeyframeInterpolation, CreateLoraHookKeyframeFromStrengthList)
|
22 | 22 | from .nodes_sample import (FreeInitOptionsNode, NoiseLayerAddWeightedNode, SampleSettingsNode, NoiseLayerAddNode, NoiseLayerReplaceNode, IterationOptionsNode,
|
23 |
| - CustomCFGNode, CustomCFGKeyframeNode, NoisedImageInjectionNode, NoisedImageInjectOptionsNode) |
| 23 | + CustomCFGNode, CustomCFGSimpleNode, CustomCFGKeyframeNode, CustomCFGKeyframeSimpleNode, |
| 24 | + CFGExtrasPAGNode, CFGExtrasPAGSimpleNode, CFGExtrasRescaleCFGNode, CFGExtrasRescaleCFGSimpleNode, |
| 25 | + NoisedImageInjectionNode, NoisedImageInjectOptionsNode) |
24 | 26 | from .nodes_sigma_schedule import (SigmaScheduleNode, RawSigmaScheduleNode, WeightedAverageSigmaScheduleNode, InterpolatedWeightedAverageSigmaScheduleNode, SplitAndCombineSigmaScheduleNode)
|
25 | 27 | from .nodes_context import (LegacyLoopedUniformContextOptionsNode, LoopedUniformContextOptionsNode, LoopedUniformViewOptionsNode, StandardUniformContextOptionsNode, StandardStaticContextOptionsNode, BatchedContextOptionsNode,
|
26 |
| - StandardStaticViewOptionsNode, StandardUniformViewOptionsNode, ViewAsContextOptionsNode) |
| 28 | + StandardStaticViewOptionsNode, StandardUniformViewOptionsNode, ViewAsContextOptionsNode, VisualizeContextOptionsInt) |
27 | 29 | from .nodes_ad_settings import (AnimateDiffSettingsNode, ManualAdjustPENode, SweetspotStretchPENode, FullStretchPENode,
|
28 | 30 | WeightAdjustAllAddNode, WeightAdjustAllMultNode, WeightAdjustIndivAddNode, WeightAdjustIndivMultNode,
|
29 | 31 | WeightAdjustIndivAttnAddNode, WeightAdjustIndivAttnMultNode)
|
30 |
| -from .nodes_extras import AnimateDiffUnload, EmptyLatentImageLarge, CheckpointLoaderSimpleWithNoiseSelect |
| 32 | +from .nodes_extras import AnimateDiffUnload, EmptyLatentImageLarge, CheckpointLoaderSimpleWithNoiseSelect, PerturbedAttentionGuidanceMultival, RescaleCFGMultival |
31 | 33 | from .nodes_deprecated import (AnimateDiffLoader_Deprecated, AnimateDiffLoaderAdvanced_Deprecated, AnimateDiffCombine_Deprecated,
|
32 | 34 | AnimateDiffModelSettings, AnimateDiffModelSettingsSimple, AnimateDiffModelSettingsAdvanced, AnimateDiffModelSettingsAdvancedAttnStrengths)
|
33 | 35 | from .nodes_lora import AnimateDiffLoraLoader
|
|
56 | 58 | "ADE_ViewsOnlyContextOptions": ViewAsContextOptionsNode,
|
57 | 59 | "ADE_BatchedContextOptions": BatchedContextOptionsNode,
|
58 | 60 | "ADE_AnimateDiffUniformContextOptions": LegacyLoopedUniformContextOptionsNode, # Legacy
|
| 61 | + #"ADE_VisualizeContextOptions": VisualizeContextOptionsInt, |
59 | 62 | # View Opts
|
60 | 63 | "ADE_StandardStaticViewOptions": StandardStaticViewOptionsNode,
|
61 | 64 | "ADE_StandardUniformViewOptions": StandardUniformViewOptionsNode,
|
|
100 | 103 | "ADE_AdjustWeightIndivAttnAdd": WeightAdjustIndivAttnAddNode,
|
101 | 104 | "ADE_AdjustWeightIndivAttnMult": WeightAdjustIndivAttnMultNode,
|
102 | 105 | # Sample Settings
|
| 106 | + "ADE_CustomCFGSimple": CustomCFGSimpleNode, |
103 | 107 | "ADE_CustomCFG": CustomCFGNode,
|
| 108 | + "ADE_CustomCFGKeyframeSimple": CustomCFGKeyframeSimpleNode, |
104 | 109 | "ADE_CustomCFGKeyframe": CustomCFGKeyframeNode,
|
105 | 110 | "ADE_SigmaSchedule": SigmaScheduleNode,
|
106 | 111 | "ADE_RawSigmaSchedule": RawSigmaScheduleNode,
|
|
109 | 114 | "ADE_SigmaScheduleSplitAndCombine": SplitAndCombineSigmaScheduleNode,
|
110 | 115 | "ADE_NoisedImageInjection": NoisedImageInjectionNode,
|
111 | 116 | "ADE_NoisedImageInjectOptions": NoisedImageInjectOptionsNode,
|
| 117 | + "ADE_CFGExtrasPAGSimple": CFGExtrasPAGSimpleNode, |
| 118 | + "ADE_CFGExtrasPAG": CFGExtrasPAGNode, |
| 119 | + "ADE_CFGExtrasRescaleCFGSimple": CFGExtrasRescaleCFGSimpleNode, |
| 120 | + "ADE_CFGExtrasRescaleCFG": CFGExtrasRescaleCFGNode, |
112 | 121 | # Extras Nodes
|
113 | 122 | "ADE_AnimateDiffUnload": AnimateDiffUnload,
|
114 | 123 | "ADE_EmptyLatentImageLarge": EmptyLatentImageLarge,
|
115 | 124 | "CheckpointLoaderSimpleWithNoiseSelect": CheckpointLoaderSimpleWithNoiseSelect,
|
| 125 | + "ADE_PerturbedAttentionGuidanceMultival": PerturbedAttentionGuidanceMultival, |
| 126 | + "ADE_RescaleCFGMultival": RescaleCFGMultival, |
116 | 127 | # Gen1 Nodes
|
117 | 128 | "ADE_AnimateDiffLoaderGen1": AnimateDiffLoaderGen1,
|
118 | 129 | "ADE_AnimateDiffLoaderWithContext": LegacyAnimateDiffLoaderWithContext,
|
|
158 | 169 | "ADE_AnimateDiffSamplingSettings": "Sample Settings 🎭🅐🅓",
|
159 | 170 | "ADE_AnimateDiffKeyframe": "AnimateDiff Keyframe 🎭🅐🅓",
|
160 | 171 | # Multival Nodes
|
161 |
| - "ADE_MultivalDynamic": "Multival Dynamic 🎭🅐🅓", |
162 |
| - "ADE_MultivalDynamicFloatInput": "Multival Dynamic [Float List] 🎭🅐🅓", |
| 172 | + "ADE_MultivalDynamic": "Multival 🎭🅐🅓", |
| 173 | + "ADE_MultivalDynamicFloatInput": "Multival [Float List] 🎭🅐🅓", |
163 | 174 | "ADE_MultivalScaledMask": "Multival Scaled Mask 🎭🅐🅓",
|
164 | 175 | "ADE_MultivalConvertToMask": "Multival to Mask 🎭🅐🅓",
|
165 | 176 | # Context Opts
|
|
169 | 180 | "ADE_ViewsOnlyContextOptions": "Context Options◆Views Only [VRAM⇈] 🎭🅐🅓",
|
170 | 181 | "ADE_BatchedContextOptions": "Context Options◆Batched [Non-AD] 🎭🅐🅓",
|
171 | 182 | "ADE_AnimateDiffUniformContextOptions": "Context Options◆Looped Uniform 🎭🅐🅓", # Legacy
|
| 183 | + "ADE_VisualizeContextOptions": "Visualize Context Options 🎭🅐🅓", |
172 | 184 | # View Opts
|
173 | 185 | "ADE_StandardStaticViewOptions": "View Options◆Standard Static 🎭🅐🅓",
|
174 | 186 | "ADE_StandardUniformViewOptions": "View Options◆Standard Uniform 🎭🅐🅓",
|
|
213 | 225 | "ADE_AdjustWeightIndivAttnAdd": "Adjust Weight [Indiv-Attn◆Add] 🎭🅐🅓",
|
214 | 226 | "ADE_AdjustWeightIndivAttnMult": "Adjust Weight [Indiv-Attn◆Mult] 🎭🅐🅓",
|
215 | 227 | # Sample Settings
|
216 |
| - "ADE_CustomCFG": "Custom CFG 🎭🅐🅓", |
217 |
| - "ADE_CustomCFGKeyframe": "Custom CFG Keyframe 🎭🅐🅓", |
| 228 | + "ADE_CustomCFGSimple": "Custom CFG 🎭🅐🅓", |
| 229 | + "ADE_CustomCFG": "Custom CFG [Multival] 🎭🅐🅓", |
| 230 | + "ADE_CustomCFGKeyframeSimple": "Custom CFG Keyframe 🎭🅐🅓", |
| 231 | + "ADE_CustomCFGKeyframe": "Custom CFG Keyframe [Multival] 🎭🅐🅓", |
218 | 232 | "ADE_SigmaSchedule": "Create Sigma Schedule 🎭🅐🅓",
|
219 | 233 | "ADE_RawSigmaSchedule": "Create Raw Sigma Schedule 🎭🅐🅓",
|
220 | 234 | "ADE_SigmaScheduleWeightedAverage": "Sigma Schedule Weighted Mean 🎭🅐🅓",
|
221 | 235 | "ADE_SigmaScheduleWeightedAverageInterp": "Sigma Schedule Interpolated Mean 🎭🅐🅓",
|
222 | 236 | "ADE_SigmaScheduleSplitAndCombine": "Sigma Schedule Split Combine 🎭🅐🅓",
|
223 | 237 | "ADE_NoisedImageInjection": "Image Injection 🎭🅐🅓",
|
224 | 238 | "ADE_NoisedImageInjectOptions": "Image Injection Options 🎭🅐🅓",
|
| 239 | + "ADE_CFGExtrasPAGSimple": "CFG Extras◆PAG 🎭🅐🅓", |
| 240 | + "ADE_CFGExtrasPAG": "CFG Extras◆PAG [Multival] 🎭🅐🅓", |
| 241 | + "ADE_CFGExtrasRescaleCFGSimple": "CFG Extras◆RescaleCFG 🎭🅐🅓", |
| 242 | + "ADE_CFGExtrasRescaleCFG": "CFG Extras◆RescaleCFG [Multival] 🎭🅐🅓", |
225 | 243 | # Extras Nodes
|
226 | 244 | "ADE_AnimateDiffUnload": "AnimateDiff Unload 🎭🅐🅓",
|
227 | 245 | "ADE_EmptyLatentImageLarge": "Empty Latent Image (Big Batch) 🎭🅐🅓",
|
228 | 246 | "CheckpointLoaderSimpleWithNoiseSelect": "Load Checkpoint w/ Noise Select 🎭🅐🅓",
|
| 247 | + "ADE_PerturbedAttentionGuidanceMultival": "PerturbedAttnGuide [Multival] 🎭🅐🅓", |
| 248 | + "ADE_RescaleCFGMultival": "RescaleCFG [Multival] 🎭🅐🅓", |
229 | 249 | # Gen1 Nodes
|
230 | 250 | "ADE_AnimateDiffLoaderGen1": "AnimateDiff Loader 🎭🅐🅓①",
|
231 | 251 | "ADE_AnimateDiffLoaderWithContext": "AnimateDiff Loader [Legacy] 🎭🅐🅓①",
|
|
0 commit comments