diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 19:01:49 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 19:02:32 +0000 |
commit | c250cb289c97fe303cef69064bf45899406f6a40 (patch) | |
tree | 91946a85a2f26cf757e61ddb26c8aeaf2611b357 /javascript/hints.js | |
parent | 02382f7ce462a360e8aea9ee3178da48b564f70a (diff) | |
download | stable-diffusion-webui-gfx803-c250cb289c97fe303cef69064bf45899406f6a40.tar.gz stable-diffusion-webui-gfx803-c250cb289c97fe303cef69064bf45899406f6a40.tar.bz2 stable-diffusion-webui-gfx803-c250cb289c97fe303cef69064bf45899406f6a40.zip |
change checkpoint merger to work in a more obvious way
remove sigmoid and inverse sigmoid because they just did the same thing as weighed sum only with changed multiplier
Diffstat (limited to 'javascript/hints.js')
-rw-r--r-- | javascript/hints.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript/hints.js b/javascript/hints.js index af010a59..8fec907d 100644 --- a/javascript/hints.js +++ b/javascript/hints.js @@ -87,8 +87,8 @@ titles = { "Quicksettings list": "List of setting names, separated by commas, for settings that should go to the quick access bar at the top, rather than the usual setting tab. See modules/shared.py for setting names. Requires restarting to apply.", - "Weighted Sum": "Result = A * (1 - M) + B * M", - "Add difference": "Result = A + (B - C) * (1 - M)", + "Weighted sum": "Result = A * (1 - M) + B * M", + "Add difference": "Result = A + (B - C) * M", } |