| | import numpy as np |
| | from torch import Tensor |
| |
|
| | import folder_paths |
| |
|
| | from .control import load_controlnet, convert_to_advanced, ControlWeights, ControlWeightType,\ |
| | LatentKeyframeGroup, TimestepKeyframe, TimestepKeyframeGroup, is_advanced_controlnet |
| | from .control import StrengthInterpolation as SI |
| | from .weight_nodes import DefaultWeights, ScaledSoftMaskedUniversalWeights, ScaledSoftUniversalWeights, SoftControlNetWeights, CustomControlNetWeights, \ |
| | SoftT2IAdapterWeights, CustomT2IAdapterWeights |
| | from .latent_keyframe_nodes import LatentKeyframeGroupNode, LatentKeyframeInterpolationNode, LatentKeyframeBatchedGroupNode, LatentKeyframeNode |
| | from .deprecated_nodes import LoadImagesFromDirectory |
| | from .logger import logger |
| |
|
| |
|
| | class TimestepKeyframeNode: |
| | @classmethod |
| | def INPUT_TYPES(s): |
| | return { |
| | "required": { |
| | "start_percent": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 1.0, "step": 0.001}, ), |
| | }, |
| | "optional": { |
| | "prev_timestep_kf": ("TIMESTEP_KEYFRAME", ), |
| | "strength": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.001}, ), |
| | "cn_weights": ("CONTROL_NET_WEIGHTS", ), |
| | "latent_keyframe": ("LATENT_KEYFRAME", ), |
| | "null_latent_kf_strength": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 10.0, "step": 0.001}, ), |
| | "inherit_missing": ("BOOLEAN", {"default": True}, ), |
| | "guarantee_usage": ("BOOLEAN", {"default": True}, ), |
| | "mask_optional": ("MASK", ), |
| | |
| | } |
| | } |
| | |
| | RETURN_NAMES = ("TIMESTEP_KF", ) |
| | RETURN_TYPES = ("TIMESTEP_KEYFRAME", ) |
| | FUNCTION = "load_keyframe" |
| |
|
| | CATEGORY = "Adv-ControlNet ππ
π
π
/keyframes" |
| |
|
| | def load_keyframe(self, |
| | start_percent: float, |
| | strength: float=1.0, |
| | cn_weights: ControlWeights=None, control_net_weights: ControlWeights=None, |
| | latent_keyframe: LatentKeyframeGroup=None, |
| | prev_timestep_kf: TimestepKeyframeGroup=None, prev_timestep_keyframe: TimestepKeyframeGroup=None, |
| | null_latent_kf_strength: float=0.0, |
| | inherit_missing=True, |
| | guarantee_usage=True, |
| | mask_optional=None, |
| | interpolation: str=SI.NONE,): |
| | control_net_weights = control_net_weights if control_net_weights else cn_weights |
| | prev_timestep_keyframe = prev_timestep_keyframe if prev_timestep_keyframe else prev_timestep_kf |
| | if not prev_timestep_keyframe: |
| | prev_timestep_keyframe = TimestepKeyframeGroup() |
| | else: |
| | prev_timestep_keyframe = prev_timestep_keyframe.clone() |
| | keyframe = TimestepKeyframe(start_percent=start_percent, strength=strength, interpolation=interpolation, null_latent_kf_strength=null_latent_kf_strength, |
| | control_weights=control_net_weights, latent_keyframes=latent_keyframe, inherit_missing=inherit_missing, guarantee_usage=guarantee_usage, |
| | mask_hint_orig=mask_optional) |
| | prev_timestep_keyframe.add(keyframe) |
| | return (prev_timestep_keyframe,) |
| |
|
| |
|
| | class ControlNetLoaderAdvanced: |
| | @classmethod |
| | def INPUT_TYPES(s): |
| | return { |
| | "required": { |
| | "control_net_name": (folder_paths.get_filename_list("controlnet"), ), |
| | }, |
| | "optional": { |
| | "timestep_keyframe": ("TIMESTEP_KEYFRAME", ), |
| | } |
| | } |
| |
|
| | RETURN_TYPES = ("CONTROL_NET", ) |
| | FUNCTION = "load_controlnet" |
| |
|
| | CATEGORY = "Adv-ControlNet ππ
π
π
" |
| |
|
| | def load_controlnet(self, control_net_name, |
| | timestep_keyframe: TimestepKeyframeGroup=None |
| | ): |
| | controlnet_path = folder_paths.get_full_path("controlnet", control_net_name) |
| | controlnet = load_controlnet(controlnet_path, timestep_keyframe) |
| | return (controlnet,) |
| | |
| |
|
| | class DiffControlNetLoaderAdvanced: |
| | @classmethod |
| | def INPUT_TYPES(s): |
| | return { |
| | "required": { |
| | "model": ("MODEL",), |
| | "control_net_name": (folder_paths.get_filename_list("controlnet"), ) |
| | }, |
| | "optional": { |
| | "timestep_keyframe": ("TIMESTEP_KEYFRAME", ), |
| | } |
| | } |
| | |
| | RETURN_TYPES = ("CONTROL_NET", ) |
| | FUNCTION = "load_controlnet" |
| |
|
| | CATEGORY = "Adv-ControlNet ππ
π
π
" |
| |
|
| | def load_controlnet(self, control_net_name, model, |
| | timestep_keyframe: TimestepKeyframeGroup=None |
| | ): |
| | controlnet_path = folder_paths.get_full_path("controlnet", control_net_name) |
| | controlnet = load_controlnet(controlnet_path, timestep_keyframe, model) |
| | if is_advanced_controlnet(controlnet): |
| | controlnet.verify_all_weights() |
| | return (controlnet,) |
| |
|
| |
|
| | class AdvancedControlNetApply: |
| | @classmethod |
| | def INPUT_TYPES(s): |
| | return { |
| | "required": { |
| | "positive": ("CONDITIONING", ), |
| | "negative": ("CONDITIONING", ), |
| | "control_net": ("CONTROL_NET", ), |
| | "image": ("IMAGE", ), |
| | "strength": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}), |
| | "start_percent": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 1.0, "step": 0.001}), |
| | "end_percent": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.001}) |
| | }, |
| | "optional": { |
| | "mask_optional": ("MASK", ), |
| | "timestep_kf": ("TIMESTEP_KEYFRAME", ), |
| | "latent_kf_override": ("LATENT_KEYFRAME", ), |
| | "weights_override": ("CONTROL_NET_WEIGHTS", ), |
| | } |
| | } |
| |
|
| | RETURN_TYPES = ("CONDITIONING","CONDITIONING") |
| | RETURN_NAMES = ("positive", "negative") |
| | FUNCTION = "apply_controlnet" |
| |
|
| | CATEGORY = "Adv-ControlNet ππ
π
π
" |
| |
|
| | def apply_controlnet(self, positive, negative, control_net, image, strength, start_percent, end_percent, |
| | mask_optional: Tensor=None, |
| | timestep_kf: TimestepKeyframeGroup=None, latent_kf_override: LatentKeyframeGroup=None, |
| | weights_override: ControlWeights=None): |
| | if strength == 0: |
| | return (positive, negative) |
| |
|
| | control_hint = image.movedim(-1,1) |
| | cnets = {} |
| |
|
| | out = [] |
| | for conditioning in [positive, negative]: |
| | c = [] |
| | for t in conditioning: |
| | d = t[1].copy() |
| |
|
| | prev_cnet = d.get('control', None) |
| | if prev_cnet in cnets: |
| | c_net = cnets[prev_cnet] |
| | else: |
| | |
| | c_net = convert_to_advanced(control_net.copy()).set_cond_hint(control_hint, strength, (start_percent, end_percent)) |
| | if is_advanced_controlnet(c_net): |
| | |
| | if timestep_kf is not None: |
| | c_net.set_timestep_keyframes(timestep_kf) |
| | if latent_kf_override is not None: |
| | c_net.latent_keyframe_override = latent_kf_override |
| | if weights_override is not None: |
| | c_net.weights_override = weights_override |
| | |
| | c_net.verify_all_weights() |
| | |
| | if mask_optional is not None: |
| | mask_optional = mask_optional.clone() |
| | |
| | if len(mask_optional.shape) < 3: |
| | mask_optional = mask_optional.unsqueeze(0) |
| | c_net.set_cond_hint_mask(mask_optional) |
| | c_net.set_previous_controlnet(prev_cnet) |
| | cnets[prev_cnet] = c_net |
| |
|
| | d['control'] = c_net |
| | d['control_apply_to_uncond'] = False |
| | n = [t[0], d] |
| | c.append(n) |
| | out.append(c) |
| | return (out[0], out[1]) |
| |
|
| |
|
| | |
| | NODE_CLASS_MAPPINGS = { |
| | |
| | "TimestepKeyframe": TimestepKeyframeNode, |
| | "LatentKeyframe": LatentKeyframeNode, |
| | "LatentKeyframeGroup": LatentKeyframeGroupNode, |
| | "LatentKeyframeBatchedGroup": LatentKeyframeBatchedGroupNode, |
| | "LatentKeyframeTiming": LatentKeyframeInterpolationNode, |
| | |
| | "ACN_AdvancedControlNetApply": AdvancedControlNetApply, |
| | |
| | "ControlNetLoaderAdvanced": ControlNetLoaderAdvanced, |
| | "DiffControlNetLoaderAdvanced": DiffControlNetLoaderAdvanced, |
| | |
| | "ScaledSoftControlNetWeights": ScaledSoftUniversalWeights, |
| | "ScaledSoftMaskedUniversalWeights": ScaledSoftMaskedUniversalWeights, |
| | "SoftControlNetWeights": SoftControlNetWeights, |
| | "CustomControlNetWeights": CustomControlNetWeights, |
| | "SoftT2IAdapterWeights": SoftT2IAdapterWeights, |
| | "CustomT2IAdapterWeights": CustomT2IAdapterWeights, |
| | "ACN_DefaultUniversalWeights": DefaultWeights, |
| | |
| | "LoadImagesFromDirectory": LoadImagesFromDirectory |
| | } |
| |
|
| | NODE_DISPLAY_NAME_MAPPINGS = { |
| | |
| | "TimestepKeyframe": "Timestep Keyframe ππ
π
π
", |
| | "LatentKeyframe": "Latent Keyframe ππ
π
π
", |
| | "LatentKeyframeGroup": "Latent Keyframe Group ππ
π
π
", |
| | "LatentKeyframeBatchedGroup": "Latent Keyframe Batched Group ππ
π
π
", |
| | "LatentKeyframeTiming": "Latent Keyframe Interpolation ππ
π
π
", |
| | |
| | "ACN_AdvancedControlNetApply": "Apply Advanced ControlNet ππ
π
π
", |
| | |
| | "ControlNetLoaderAdvanced": "Load Advanced ControlNet Model ππ
π
π
", |
| | "DiffControlNetLoaderAdvanced": "Load Advanced ControlNet Model (diff) ππ
π
π
", |
| | |
| | "ScaledSoftControlNetWeights": "Scaled Soft Weights ππ
π
π
", |
| | "ScaledSoftMaskedUniversalWeights": "Scaled Soft Masked Weights ππ
π
π
", |
| | "SoftControlNetWeights": "ControlNet Soft Weights ππ
π
π
", |
| | "CustomControlNetWeights": "ControlNet Custom Weights ππ
π
π
", |
| | "SoftT2IAdapterWeights": "T2IAdapter Soft Weights ππ
π
π
", |
| | "CustomT2IAdapterWeights": "T2IAdapter Custom Weights ππ
π
π
", |
| | "ACN_DefaultUniversalWeights": "Force Default Weights ππ
π
π
", |
| | |
| | "LoadImagesFromDirectory": "Load Images [DEPRECATED] ππ
π
π
" |
| | } |
| |
|