Merge pull request #11927 from ljleb/fix-AND
Fix composable diffusion weight parsing
This commit is contained in:
parent
704628b903
commit
cad87bf4e3
@ -178,7 +178,7 @@ def get_learned_conditioning(model, prompts: SdConditioning | list[str], steps):
|
|||||||
|
|
||||||
|
|
||||||
re_AND = re.compile(r"\bAND\b")
|
re_AND = re.compile(r"\bAND\b")
|
||||||
re_weight = re.compile(r"^(.*?)(?:\s*:\s*([-+]?(?:\d+\.?|\d*\.\d+)))?\s*$")
|
re_weight = re.compile(r"^((?:\s|.)*?)(?:\s*:\s*([-+]?(?:\d+\.?|\d*\.\d+)))?\s*$")
|
||||||
|
|
||||||
|
|
||||||
def get_multicond_prompt_list(prompts: SdConditioning | list[str]):
|
def get_multicond_prompt_list(prompts: SdConditioning | list[str]):
|
||||||
|
Loading…
Reference in New Issue
Block a user