Added forward_timestep_embed_patch type, added helper functions on ModelPatcher for emb_patch and forward_timestep_embed_patch, added helper functions for removing callbacks/wrappers/additional_models by key, added custom_should_register prop to hooks

This commit is contained in:
kosinkadink1@gmail.com 2024-09-24 12:40:54 +09:00
parent 7c86407619
commit da6c0455cc
4 changed files with 55 additions and 8 deletions

View File

@ -32,12 +32,18 @@ class EnumWeightTarget(enum.Enum):
class _HookRef: class _HookRef:
pass pass
# NOTE: this is an example of how the should_register function should look
def default_should_register(hook: 'Hook', model: 'ModelPatcher', target: EnumWeightTarget):
return True
class Hook: class Hook:
def __init__(self, hook_type: EnumHookType=None, hook_ref: _HookRef=None, def __init__(self, hook_type: EnumHookType=None, hook_ref: _HookRef=None,
hook_keyframe: 'HookKeyframeGroup'=None): hook_keyframe: 'HookKeyframeGroup'=None):
self.hook_type = hook_type self.hook_type = hook_type
self.hook_ref = hook_ref if hook_ref else _HookRef() self.hook_ref = hook_ref if hook_ref else _HookRef()
self.hook_keyframe = hook_keyframe if hook_keyframe else HookKeyframeGroup() self.hook_keyframe = hook_keyframe if hook_keyframe else HookKeyframeGroup()
self.custom_should_register = default_should_register
@property @property
def strength(self): def strength(self):
@ -57,15 +63,18 @@ class Hook:
c.hook_type = self.hook_type c.hook_type = self.hook_type
c.hook_ref = self.hook_ref c.hook_ref = self.hook_ref
c.hook_keyframe = self.hook_keyframe c.hook_keyframe = self.hook_keyframe
c.custom_should_register = self.custom_should_register
return c return c
def should_register(self, model: 'ModelPatcher', target: EnumWeightTarget):
return self.custom_should_register(self, model, target)
def __eq__(self, other: 'Hook'): def __eq__(self, other: 'Hook'):
return self.__class__ == other.__class__ and self.hook_ref == other.hook_ref return self.__class__ == other.__class__ and self.hook_ref == other.hook_ref
def __hash__(self): def __hash__(self):
return hash(self.hook_ref) return hash(self.hook_ref)
class WeightHook(Hook): class WeightHook(Hook):
def __init__(self, strength_model=1.0, strength_clip=1.0): def __init__(self, strength_model=1.0, strength_clip=1.0):
super().__init__(hook_type=EnumHookType.Weight) super().__init__(hook_type=EnumHookType.Weight)
@ -85,6 +94,8 @@ class WeightHook(Hook):
return self._strength_clip * self.strength return self._strength_clip * self.strength
def add_hook_patches(self, model: 'ModelPatcher', target: EnumWeightTarget): def add_hook_patches(self, model: 'ModelPatcher', target: EnumWeightTarget):
if not self.should_register(model, target):
return
weights = None weights = None
if target == EnumWeightTarget.Model: if target == EnumWeightTarget.Model:
strength = self._strength_model strength = self._strength_model

View File

@ -47,6 +47,15 @@ def forward_timestep_embed(ts, x, emb, context=None, transformer_options={}, out
elif isinstance(layer, Upsample): elif isinstance(layer, Upsample):
x = layer(x, output_shape=output_shape) x = layer(x, output_shape=output_shape)
else: else:
if "patches" in transformer_options and "forward_timestep_embed_patch" in transformer_options["patches"]:
found_patched = False
for class_type, handler in transformer_options["patches"]["forward_timestep_embed_patch"]:
if isinstance(layer, class_type):
x = handler(layer, x, emb, context, transformer_options, output_shape, time_context, num_video_frames, image_only_indicator)
found_patched = True
break
if found_patched:
continue
x = layer(x) x = layer(x)
return x return x

View File

@ -433,6 +433,12 @@ class ModelPatcher:
def set_model_output_block_patch(self, patch): def set_model_output_block_patch(self, patch):
self.set_model_patch(patch, "output_block_patch") self.set_model_patch(patch, "output_block_patch")
def set_model_emb_patch(self, patch):
self.set_model_patch(patch, "emb_patch")
def set_model_forward_timestep_embed_patch(self, patch):
self.set_model_patch(patch, "forward_timestep_embed_patch")
def add_object_patch(self, name, obj): def add_object_patch(self, name, obj):
self.object_patches[name] = obj self.object_patches[name] = obj
@ -769,12 +775,6 @@ class ModelPatcher:
for callback in self.get_all_callbacks(CallbacksMP.ON_CLEANUP): for callback in self.get_all_callbacks(CallbacksMP.ON_CLEANUP):
callback(self) callback(self)
def get_all_additional_models(self):
all_models = []
for models in self.additional_models.values():
all_models.extend(models)
return all_models
def add_callback(self, call_type: str, callback: Callable): def add_callback(self, call_type: str, callback: Callable):
self.add_callback_with_key(call_type, None, callback) self.add_callback_with_key(call_type, None, callback)
@ -784,6 +784,11 @@ class ModelPatcher:
c = self.callbacks[call_type].setdefault(key, []) c = self.callbacks[call_type].setdefault(key, [])
c.append(callback) c.append(callback)
def remove_callbacks_with_key(self, call_type: str, key: str):
c = self.callbacks.get(call_type, {})
if key in c:
c.pop(key)
def get_callbacks(self, call_type: str, key: str): def get_callbacks(self, call_type: str, key: str):
return self.callbacks.get(call_type, {}).get(key, []) return self.callbacks.get(call_type, {}).get(key, [])
@ -802,6 +807,11 @@ class ModelPatcher:
w = self.wrappers[wrapper_type].setdefault(key, []) w = self.wrappers[wrapper_type].setdefault(key, [])
w.append(wrapper) w.append(wrapper)
def remove_wrappers_with_key(self, wrapper_type: str, key: str):
w = self.wrappers.get(wrapper_type, {})
if key in w:
w.pop(key)
def get_wrappers(self, wrapper_type: str, key: str): def get_wrappers(self, wrapper_type: str, key: str):
return self.wrappers.get(wrapper_type, {}).get(key, []) return self.wrappers.get(wrapper_type, {}).get(key, [])
@ -814,12 +824,30 @@ class ModelPatcher:
def set_attachments(self, key: str, attachment): def set_attachments(self, key: str, attachment):
self.attachments[key] = attachment self.attachments[key] = attachment
def remove_attachments(self, key: str):
if key in self.attachments:
self.attachments.pop(key)
def set_injections(self, key: str, injections: List[PatcherInjection]): def set_injections(self, key: str, injections: List[PatcherInjection]):
self.injections[key] = injections self.injections[key] = injections
def remove_injections(self, key: str):
if key in self.injections:
self.injections.pop(key)
def set_additional_models(self, key: str, models: List['ModelPatcher']): def set_additional_models(self, key: str, models: List['ModelPatcher']):
self.additional_models[key] = models self.additional_models[key] = models
def remove_additional_models(self, key: str):
if key in self.additional_models:
self.additional_models.pop(key)
def get_all_additional_models(self):
all_models = []
for models in self.additional_models.values():
all_models.extend(models)
return all_models
def use_ejected(self, skip_and_inject_on_exit_only=False): def use_ejected(self, skip_and_inject_on_exit_only=False):
return AutoPatcherEjector(self, skip_and_inject_on_exit_only=skip_and_inject_on_exit_only) return AutoPatcherEjector(self, skip_and_inject_on_exit_only=skip_and_inject_on_exit_only)

View File

@ -65,7 +65,6 @@ class ConditioningSetProperties:
} }
RETURN_TYPES = ("CONDITIONING",) RETURN_TYPES = ("CONDITIONING",)
RETURN_NAMES = ("positive", "negative")
CATEGORY = "advanced/hooks/cond single" CATEGORY = "advanced/hooks/cond single"
FUNCTION = "set_properties" FUNCTION = "set_properties"