File size: 10,692 Bytes
c31821c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | from __future__ import annotations
from enum import Enum
from typing import List, NamedTuple
from functools import lru_cache
class UnetBlockType(Enum):
INPUT = "input"
OUTPUT = "output"
MIDDLE = "middle"
class TransformerID(NamedTuple):
block_type: UnetBlockType
# The id of the block the transformer is in. Not all blocks have cross attn.
block_id: int
# The index of transformer within the block.
# A block can have multiple transformers in SDXL.
block_index: int
# The call index of transformer if in a single step of diffusion.
transformer_index: int
class TransformerIDResult(NamedTuple):
input_ids: List[TransformerID]
output_ids: List[TransformerID]
middle_ids: List[TransformerID]
def get(self, idx: int) -> TransformerID:
return self.to_list()[idx]
def to_list(self) -> List[TransformerID]:
return sorted(
self.input_ids + self.output_ids + self.middle_ids,
key=lambda i: i.transformer_index,
)
class StableDiffusionVersion(Enum):
"""The version family of stable diffusion model."""
UNKNOWN = 0
SD1x = 1
SD2x = 2
SDXL = 3
@staticmethod
def detect_from_model_name(model_name: str) -> "StableDiffusionVersion":
"""Based on the model name provided, guess what stable diffusion version it is.
This might not be accurate without actually inspect the file content.
"""
if any(f"sd{v}" in model_name.lower() for v in ("14", "15", "16")):
return StableDiffusionVersion.SD1x
if "sd21" in model_name or "2.1" in model_name:
return StableDiffusionVersion.SD2x
if "xl" in model_name.lower():
return StableDiffusionVersion.SDXL
return StableDiffusionVersion.UNKNOWN
def encoder_block_num(self) -> int:
if self in (
StableDiffusionVersion.SD1x,
StableDiffusionVersion.SD2x,
StableDiffusionVersion.UNKNOWN,
):
return 12
else:
return 9 # SDXL
def controlnet_layer_num(self) -> int:
return self.encoder_block_num() + 1
@property
def transformer_block_num(self) -> int:
"""Number of blocks that has cross attn transformers in unet."""
if self in (
StableDiffusionVersion.SD1x,
StableDiffusionVersion.SD2x,
StableDiffusionVersion.UNKNOWN,
):
return 16
else:
return 11 # SDXL
@property
@lru_cache(maxsize=None)
def transformer_ids(self) -> List[TransformerID]:
"""id of blocks that have cross attention"""
if self in (
StableDiffusionVersion.SD1x,
StableDiffusionVersion.SD2x,
StableDiffusionVersion.UNKNOWN,
):
transformer_index = 0
input_ids = []
for block_id in [1, 2, 4, 5, 7, 8]:
input_ids.append(
TransformerID(UnetBlockType.INPUT, block_id, 0, transformer_index)
)
transformer_index += 1
middle_id = TransformerID(UnetBlockType.MIDDLE, 0, 0, transformer_index)
transformer_index += 1
output_ids = []
for block_id in [3, 4, 5, 6, 7, 8, 9, 10, 11]:
input_ids.append(
TransformerID(UnetBlockType.OUTPUT, block_id, 0, transformer_index)
)
transformer_index += 1
return TransformerIDResult(input_ids, output_ids, [middle_id])
else:
# SDXL
transformer_index = 0
input_ids = []
for block_id in [4, 5, 7, 8]:
block_indices = (
range(2) if block_id in [4, 5] else range(10)
) # transformer_depth
for index in block_indices:
input_ids.append(
TransformerID(
UnetBlockType.INPUT, block_id, index, transformer_index
)
)
transformer_index += 1
middle_ids = [
TransformerID(UnetBlockType.MIDDLE, 0, index, transformer_index)
for index in range(10)
]
transformer_index += 1
output_ids = []
for block_id in range(6):
block_indices = (
range(2) if block_id in [3, 4, 5] else range(10)
) # transformer_depth
for index in block_indices:
output_ids.append(
TransformerID(
UnetBlockType.OUTPUT, block_id, index, transformer_index
)
)
transformer_index += 1
return TransformerIDResult(input_ids, output_ids, middle_ids)
def is_compatible_with(self, other: "StableDiffusionVersion") -> bool:
"""Incompatible only when one of version is SDXL and other is not."""
return (
any(v == StableDiffusionVersion.UNKNOWN for v in [self, other])
or sum(v == StableDiffusionVersion.SDXL for v in [self, other]) != 1
)
class ControlModelType(Enum):
"""
The type of Control Models (supported or not).
"""
ControlNet = "ControlNet, Lvmin Zhang"
T2I_Adapter = "T2I_Adapter, Chong Mou"
T2I_StyleAdapter = "T2I_StyleAdapter, Chong Mou"
T2I_CoAdapter = "T2I_CoAdapter, Chong Mou"
MasaCtrl = "MasaCtrl, Mingdeng Cao"
GLIGEN = "GLIGEN, Yuheng Li"
AttentionInjection = "AttentionInjection, Lvmin Zhang" # A simple attention injection written by Lvmin
StableSR = "StableSR, Jianyi Wang"
PromptDiffusion = "PromptDiffusion, Zhendong Wang"
ControlLoRA = "ControlLoRA, Wu Hecong"
ReVision = "ReVision, Stability"
IPAdapter = "IPAdapter, Hu Ye"
Controlllite = "Controlllite, Kohya"
InstantID = "InstantID, Qixun Wang"
SparseCtrl = "SparseCtrl, Yuwei Guo"
ControlNetUnion = "ControlNetUnion, xinsir6"
@property
def is_controlnet(self) -> bool:
"""Returns whether the control model should be treated as ControlNet."""
return self in (
ControlModelType.ControlNet,
ControlModelType.ControlLoRA,
ControlModelType.InstantID,
ControlModelType.ControlNetUnion,
)
@property
def allow_context_sharing(self) -> bool:
"""Returns whether this control model type allows the same PlugableControlModel
object map to multiple ControlNetUnit.
Both IPAdapter and Controlllite have unit specific input (clip/image) stored
on the model object during inference. Sharing the context means that the input
set earlier gets lost.
"""
return self not in (
ControlModelType.IPAdapter,
ControlModelType.Controlllite,
)
@property
def supports_effective_region_mask(self) -> bool:
return (
self
in {
ControlModelType.IPAdapter,
ControlModelType.T2I_Adapter,
}
or self.is_controlnet
)
# Written by Lvmin
class AutoMachine(Enum):
"""
Lvmin's algorithm for Attention/AdaIn AutoMachine States.
"""
Read = "Read"
Write = "Write"
StyleAlign = "StyleAlign"
class HiResFixOption(Enum):
BOTH = "Both"
LOW_RES_ONLY = "Low res only"
HIGH_RES_ONLY = "High res only"
class InputMode(Enum):
# Single image to a single ControlNet unit.
SIMPLE = "simple"
# Input is a directory. N generations. Each generation takes 1 input image
# from the directory.
BATCH = "batch"
# Input is a directory. 1 generation. Each generation takes N input image
# from the directory.
MERGE = "merge"
class PuLIDMode(Enum):
FIDELITY = "Fidelity"
STYLE = "Extremely style"
class ControlMode(Enum):
"""
The improved guess mode.
"""
BALANCED = "Balanced"
PROMPT = "My prompt is more important"
CONTROL = "ControlNet is more important"
class BatchOption(Enum):
DEFAULT = "All ControlNet units for all images in a batch"
SEPARATE = "Each ControlNet unit for each image in a batch"
class ResizeMode(Enum):
"""
Resize modes for ControlNet input images.
"""
RESIZE = "Just Resize"
INNER_FIT = "Crop and Resize"
OUTER_FIT = "Resize and Fill"
def int_value(self):
if self == ResizeMode.RESIZE:
return 0
elif self == ResizeMode.INNER_FIT:
return 1
elif self == ResizeMode.OUTER_FIT:
return 2
assert False, "NOTREACHED"
class ControlNetUnionControlType(Enum):
"""
ControlNet control type for ControlNet union model.
https://github.com/xinsir6/ControlNetPlus/tree/main
"""
OPENPOSE = "OpenPose"
DEPTH = "Depth"
# hed/pidi/scribble/ted
SOFT_EDGE = "Soft Edge"
# canny/lineart/anime_lineart/mlsd
HARD_EDGE = "Hard Edge"
NORMAL_MAP = "Normal Map"
SEGMENTATION = "Segmentation"
TILE = "Tile"
INPAINT = "Inpaint"
UNKNOWN = "Unknown"
@staticmethod
def all_tags() -> List[str]:
""" Tags can be handled by union ControlNet """
return [
"openpose",
"depth",
"softedge",
"scribble",
"canny",
"lineart",
"mlsd",
"normalmap",
"segmentation",
"inpaint",
"tile",
]
@staticmethod
def from_str(s: str) -> ControlNetUnionControlType:
s = s.lower()
if s == "openpose":
return ControlNetUnionControlType.OPENPOSE
elif s == "depth":
return ControlNetUnionControlType.DEPTH
elif s in ["scribble", "softedge"]:
return ControlNetUnionControlType.SOFT_EDGE
elif s in ["canny", "lineart", "mlsd"]:
return ControlNetUnionControlType.HARD_EDGE
elif s == "normalmap":
return ControlNetUnionControlType.NORMAL_MAP
elif s == "segmentation":
return ControlNetUnionControlType.SEGMENTATION
elif s in ["tile", "blur"]:
return ControlNetUnionControlType.TILE
elif s == "inpaint":
return ControlNetUnionControlType.INPAINT
return ControlNetUnionControlType.UNKNOWN
def int_value(self) -> int:
if self == ControlNetUnionControlType.UNKNOWN:
raise ValueError("Unknown control type cannot be encoded.")
return list(ControlNetUnionControlType).index(self)
|