From 47e7bc2fc4005057b59161dc3f25ff95b2aec8bf Mon Sep 17 00:00:00 2001 From: AUTOMATIC1111 <16777216c@gmail.com> Date: Sun, 30 Jul 2023 17:28:58 +0300 Subject: [PATCH] Updated Seed breaking changes (markdown) --- Seed-breaking-changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Seed-breaking-changes.md b/Seed-breaking-changes.md index c57c9c0..2a52d1a 100644 --- a/Seed-breaking-changes.md +++ b/Seed-breaking-changes.md @@ -1,5 +1,5 @@ ## [2023-07-30](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/12177) - add support for whitespace after the number in constructions like [fo… -Before the PR, whitespace after the number in prompt editing (`[foo:0.5]`), and also before and after number in emphasis (`(foo:0.5)`) them to not work and just be treated as plain text. The PR changes this and now `[foo : 0.5 ]` and `(foo : 0.5 )` work. Prompts where the user erroneously written whitespaces where they are not allowed will generate different pictures. +Before the PR, whitespace after the number in prompt editing (`[foo:0.5]`), and also before and after number in attention (`(foo:0.5)`) caused them to not work and just be treated as plain text. The PR changes this and now `[foo : 0.5 ]` and `(foo : 0.5 )` work. Prompts where the user erroneously written whitespaces where they are not allowed will generate different pictures. ## [2023-04-29](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/9669) - Fix prompt schedule for second order samplers Second order samplers (Heun, DPM2/a, DPM++ 2S/a, DPM++ SDE / Karras) cause the prompt schedule to run twice as fast when prompting something like `[dog:cat:0.5]` (i.e. for 100 steps, prompt is `dog` until step 25, `cat` until 50, and remains `dog` until 100). This fixes that by checking if the sampler is any of these second order samplers and multiplies the step count by 2 for calculating the prompt schedule.