ComfyUI_Fooocus_KSampler The KSampler from Fooocus as a ComfyUI node Nodes KSamplerWithRefiner On the surface basically two KSamplerAdvanced combined, therefore two input sets for base/refiner model and prompt. refiner_switch_step controls when the models are switched, like end_at_step/start_...
ComfyUI_Fooocus_KSampler The KSampler fromFooocusas a ComfyUI node Nodes KSamplerWithRefiner On the surface basically two KSamplerAdvanced combined, therefore two input sets for base/refiner model and prompt. refiner_switch_stepcontrols when the models are switched, likeend_at_step/start_at_ste...
from comfy.samplers import * from .Fooocus import core class KSamplerWithRefiner: @classmethod def INPUT_TYPES(s): return {"required": {"model": ("MODEL",), "refiner_model": ("MODEL",), "add_noise": (["enable", "disable"], ), "noise_seed": ("INT", {"default": 0, "min...