aboutsummaryrefslogtreecommitdiffstats
path: root/javascript/hints.js
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-10-21 06:57:55 +0000
committerGitHub <noreply@github.com>2022-10-21 06:57:55 +0000
commit0c5522ea211370046a2ca628e92d35a7c8c97972 (patch)
tree7c66a3eba0a8a8149900056c6511146182b02276 /javascript/hints.js
parent858462f719c22ca9f24b94a41699653c34b5f4fb (diff)
parent2273e752fb3e578f1047f6d38b96330b07bf61a9 (diff)
downloadstable-diffusion-webui-gfx803-0c5522ea211370046a2ca628e92d35a7c8c97972.tar.gz
stable-diffusion-webui-gfx803-0c5522ea211370046a2ca628e92d35a7c8c97972.tar.bz2
stable-diffusion-webui-gfx803-0c5522ea211370046a2ca628e92d35a7c8c97972.zip
Merge branch 'master' into training-help-text
Diffstat (limited to 'javascript/hints.js')
-rw-r--r--javascript/hints.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/javascript/hints.js b/javascript/hints.js
index b98012f5..a1fcc93b 100644
--- a/javascript/hints.js
+++ b/javascript/hints.js
@@ -91,6 +91,8 @@ titles = {
"Weighted sum": "Result = A * (1 - M) + B * M",
"Add difference": "Result = A + (B - C) * M",
+
+ "Learning rate": "how fast should the training go. Low values will take longer to train, high values may fail to converge (not generate accurate results) and/or may break the embedding (This has happened if you see Loss: nan in the training info textbox. If this happens, you need to manually restore your embedding from an older not-broken backup).\n\nYou can set a single numeric value, or multiple learning rates using the syntax:\n\n rate_1:max_steps_1, rate_2:max_steps_2, ...\n\nEG: 0.005:100, 1e-3:1000, 1e-5\n\nWill train with rate of 0.005 for first 100 steps, then 1e-3 until 1000 steps, then 1e-5 for all remaining steps.",
}