aboutsummaryrefslogtreecommitdiff
path: root/javascript/hints.js
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-12-03 09:41:39 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-12-03 09:41:39 +0300
commitc7af672186ec09a514f0e78aa21155264e56c130 (patch)
tree5290245ae2443565c2df8621a2cfc31069b76014 /javascript/hints.js
parentc67d8bca4f1f40a39a1001fb990cad69e4610c7c (diff)
more simple config option name plus mouseover hint for clip skip
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 ac417ff6..57db35be 100644
--- a/javascript/hints.js
+++ b/javascript/hints.js
@@ -94,6 +94,8 @@ titles = {
"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.",
+
+ "Clip skip": "Early stopping parameter for CLIP model; 1 is stop at last layer as usual, 2 is stop at penultimate layer, etc."
}