update controlnet starter models

This commit is contained in:
Kent Keirsey 2024-06-23 13:30:16 -04:00 committed by psychedelicious
parent 41f46b846b
commit 10b9088312

View File

@ -294,8 +294,8 @@ STARTER_MODELS: list[StarterModel] = [
StarterModel(
name="canny-sdxl",
base=BaseModelType.StableDiffusionXL,
source="diffusers/controlnet-canny-sdxl-1.0",
description="Controlnet weights trained on sdxl-1.0 with canny conditioning.",
source="xinsir/controlnet-canny-sdxl-1.0",
description="Controlnet weights trained on sdxl-1.0 with canny conditioning, by Xinsir.",
type=ModelType.ControlNet,
),
StarterModel(
@ -326,6 +326,20 @@ STARTER_MODELS: list[StarterModel] = [
description="Controlnet weights trained on sdxl-1.0 with Zoe's preprocessor (32 bits).",
type=ModelType.ControlNet,
),
StarterModel(
name="controlnet-openpose-sdxl",
base=BaseModelType.StableDiffusionXL,
source="xinsir/controlnet-openpose-sdxl-1.0",
description="Controlnet weights trained on sdxl-1.0 compatible with the DWPose processor.",
type=ModelType.ControlNet,
),
StarterModel(
name="controlnet-scribble-sdxl",
base=BaseModelType.StableDiffusionXL,
source="xinsir/controlnet-scribble-sdxl-1.0",
description="Controlnet weights trained on sdxl-1.0 compatible with various lineart processors and black/white sketches.",
type=ModelType.ControlNet,
),
# endregion
# region T2I Adapter
StarterModel(