From 1b3a650f19277c2a9f220fc00351cbdb5549800b Mon Sep 17 00:00:00 2001 From: Alexander Piskun <13381981+bigcat88@users.noreply.github.com> Date: Sun, 15 Dec 2024 08:18:02 +0300 Subject: [PATCH] (fix): added "model_type" to photomaker node (#6047) --- comfy_extras/nodes_photomaker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfy_extras/nodes_photomaker.py b/comfy_extras/nodes_photomaker.py index 95d24dd2..d358ed6d 100644 --- a/comfy_extras/nodes_photomaker.py +++ b/comfy_extras/nodes_photomaker.py @@ -16,6 +16,7 @@ VISION_CONFIG_DICT = { "patch_size": 14, "projection_dim": 768, "hidden_act": "quick_gelu", + "model_type": "clip_vision_model", } class MLP(nn.Module):