You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"tooltip": "0 all along gives Euler. 1 gives Heun.\nAnything starting from 2 will use the distance method.\n-1 will do remaining steps + 1 as the resample value. This can be pretty slow.",
269
+
}),
270
+
"resample_end": ("INT", {
271
+
"default": -1, "min": -1, "max": 32, "step": 1,
272
+
"tooltip": "How many resamples for the end. -1 means constant.",
273
+
}),
274
+
"cfgpp": ("BOOLEAN", {
275
+
"default": True,
276
+
"tooltip": "Controls whether to use CFG++ sampling. When enabled, you should set CFG to a fairly low value.",
"tooltip": "Controls the ancestralness of the main sampler steps. 0.0 means to use non-ancestral sampling. Note: May not work well with some of the other options.",
"tooltip": "Scale factor for ancestral noise added during sampling. Generally should be left at 1.0 and only has an effect when ancestral sampling is used.",
"tooltip": "Experimental option that allows using ancestral sampling for the internal distance steps. When used, should generally be a fairly low value such as 0.25. 0.0 means to use non-ancestral sampling for the internal distance steps.",
"tooltip": "Scale factor for ancestral noise added in the internal distance steps. Generally should be left at 1.0 and only has an effect when distance_step_eta is non-zero.",
293
+
}),
294
+
"use_softmax": ("BOOLEAN", {
295
+
"default": False,
296
+
"tooltip": "Rather than using a min/max normalization and an exponent will use a softmax instead.",
297
+
}),
298
+
"use_slerp": ("BOOLEAN", {
299
+
"default": False,
300
+
"tooltip": "Will SLERP the predictions instead of doing a weighted average. The difference is more obvious when using use_negative.",
301
+
}),
302
+
"perp_step": ("BOOLEAN", {
303
+
"default": False,
304
+
"tooltip": "Experimental, not yet recommended.",
305
+
}),
306
+
"use_negative": ("BOOLEAN", {
307
+
"default": False,
308
+
"tooltip": "Will use the negative prediction to prepare the distance scores. This tends to give images with less errors from my testing.",
309
+
}),
310
+
"smooth": ("BOOLEAN", {
311
+
"default": False,
312
+
"tooltip": "Not recommended, will make everything brighter. Not smoother.",
313
+
}),
314
+
"sharpen": ("BOOLEAN", {
315
+
"default": False,
316
+
"tooltip": "Not recommended, attempts to sharpen the results but instead tends to make things fuzzy.",
"tooltip": "First step to use ancestral sampling. Only applies when ETA is non-zero. You can use negative values to count from the end. Note: Steps are zero-based.",
"tooltip": "Last step to use ancestral sampling. Only applies when ETA is non-zero. You can use negative values to count from the end. Note: Steps are zero-based.",
"tooltip": "First step to use ancestral sampling for the distance steps. Only applies when distance ETA is non-zero. You can use negative values to count from the end. Note: Steps are zero-based.",
"tooltip": "Last step to use ancestral sampling for the distance steps. Only applies when distance ETA is non-zero. You can use negative values to count from the end. Note: Steps are zero-based.",
"tooltip":"0 all along gives Euler. 1 gives Heun.\nAnything starting from 2 will use the distance method.\n-1 will do remaining steps + 1 as the resample value. This can be pretty slow."}),
210
-
"resample_end": ("INT", {"default": -1, "min": -1, "max": 32, "step": 1, "tooltip":"How many resamples for the end. -1 means constant."}),
0 commit comments