diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 09:25:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 09:25:44 +0000 |
commit | c46eea221f05656368cf80856b61fa7f6c2fc9c8 (patch) | |
tree | 9fd3514c46e5b933e564983b90b496065a6bf0c8 /javascript/hints.js | |
parent | 48d171bbb373e3db9aef0776fe681b63056272b7 (diff) | |
parent | df8ee5f6b059b81bce35db05c27209df9009646e (diff) | |
download | stable-diffusion-webui-gfx803-c46eea221f05656368cf80856b61fa7f6c2fc9c8.tar.gz stable-diffusion-webui-gfx803-c46eea221f05656368cf80856b61fa7f6c2fc9c8.tar.bz2 stable-diffusion-webui-gfx803-c46eea221f05656368cf80856b61fa7f6c2fc9c8.zip |
Merge pull request #7573 from mezotaken/batch-tooltip
Update batch count/size hints
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 9aa82f24..f1199009 100644 --- a/javascript/hints.js +++ b/javascript/hints.js @@ -8,8 +8,8 @@ titles = { "DDIM": "Denoising Diffusion Implicit Models - best at inpainting", "DPM adaptive": "Ignores step count - uses a number of steps determined by the CFG and resolution", - "Batch count": "How many batches of images to create", - "Batch size": "How many image to create in a single batch", + "Batch count": "How many batches of images to create (has no impact on generation performance or VRAM usage)", + "Batch size": "How many image to create in a single batch (increases generation performance at cost of higher VRAM usage)", "CFG Scale": "Classifier Free Guidance Scale - how strongly the image should conform to prompt - lower values produce more creative results", "Seed": "A value that determines the output of random number generator - if you create an image with same parameters and seed as another image, you'll get the same result", "\u{1f3b2}\ufe0f": "Set seed to -1, which will cause a new random number to be used every time", |