aboutsummaryrefslogtreecommitdiff
path: root/javascript
diff options
context:
space:
mode:
authordiscus0434 <66945496+discus0434@users.noreply.github.com>2022-10-20 09:08:47 +0900
committerGitHub <noreply@github.com>2022-10-20 09:08:47 +0900
commit4574eea5898dcd64f354fcf17a5c67b55288b002 (patch)
treed180b71e7ac4f144ad6daceef8a56cba61f235ab /javascript
parent634acdd9546ca84a9fc75d5ecfe5650af566dd8e (diff)
parent604620a7f08d1126a8689f9f4bec8ade0801a69b (diff)
Merge branch 'AUTOMATIC1111:master' into master
Diffstat (limited to 'javascript')
-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.",
}