diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 09:45:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 09:45:43 +0000 |
commit | e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565 (patch) | |
tree | 6c31ea8ced8590afd4ba019be838bea41885b6cd /scripts/loopback.py | |
parent | c9647c8d23efa8c939c6af39878784e246082122 (diff) | |
parent | 2c935d8eb0be10edb226e145a72eb373451cb984 (diff) | |
download | stable-diffusion-webui-gfx803-e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565.tar.gz stable-diffusion-webui-gfx803-e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565.tar.bz2 stable-diffusion-webui-gfx803-e6cbfcfe5b42dd8d40ddaf2ecd448b8b0c070565.zip |
Merge branch 'dev' into gradio-theme-support
Diffstat (limited to 'scripts/loopback.py')
-rw-r--r-- | scripts/loopback.py | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/scripts/loopback.py b/scripts/loopback.py index 9c388aa8..d3065fe6 100644 --- a/scripts/loopback.py +++ b/scripts/loopback.py @@ -54,15 +54,12 @@ class Script(scripts.Script): return strength
progress = loop / (loops - 1)
- match denoising_curve:
- case "Aggressive":
- strength = math.sin((progress) * math.pi * 0.5)
-
- case "Lazy":
- strength = 1 - math.cos((progress) * math.pi * 0.5)
-
- case _:
- strength = progress
+ if denoising_curve == "Aggressive":
+ strength = math.sin((progress) * math.pi * 0.5)
+ elif denoising_curve == "Lazy":
+ strength = 1 - math.cos((progress) * math.pi * 0.5)
+ else:
+ strength = progress
change = (final_denoising_strength - initial_denoising_strength) * strength
return initial_denoising_strength + change
|