From 0b7bba2e70ff8dd184269c1aee6eecb0c16af083 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Fri, 5 Jan 2024 07:39:41 -0500 Subject: [PATCH] add openpose-xl --- CHANGELOG.md | 3 ++- modules/control/units/controlnet.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 140a9b0d6..363d3974a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2023-01-04 +## Update for 2023-01-05 Following-up on a major release, some more functionality in new Control module And it also includes fixes for all reported issues so far @@ -14,6 +14,7 @@ And it also includes fixes for all reported issues so far *note*: increase denoising strength since outpainted area is blank by default - add **marigold** depth map processor this is state-of-the-art depth estimation model, but its quite heavy on resources + - add **openpose xl** controlnet - configurable output folder in settings - auto-refresh available models on tab activate - reduce usage of temp files diff --git a/modules/control/units/controlnet.py b/modules/control/units/controlnet.py index 4dd1472bc..0dcecdbc8 100644 --- a/modules/control/units/controlnet.py +++ b/modules/control/units/controlnet.py @@ -33,6 +33,7 @@ predefined_sdxl = { 'Canny XL': 'diffusers/controlnet-canny-sdxl-1.0', 'Depth Zoe XL': 'diffusers/controlnet-zoe-depth-sdxl-1.0', 'Depth Mid XL': 'diffusers/controlnet-depth-sdxl-1.0-mid', + 'OpenPose XL': 'thibaud/controlnet-openpose-sdxl-1.0', } models = {} all_models = {}