Skip to content

Commit

Permalink
update controlnet starter models
Browse files Browse the repository at this point in the history
  • Loading branch information
hipsterusername authored and psychedelicious committed Jun 28, 2024
1 parent 41f46b8 commit c061738
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions invokeai/backend/model_manager/starter_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ class StarterModel(StarterModelWithoutDependencies):
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(
Expand Down Expand Up @@ -326,6 +326,20 @@ class StarterModel(StarterModelWithoutDependencies):
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(
Expand Down

0 comments on commit c061738

Please sign in to comment.