aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllangoK <karun.ellango7@gmail.com>2023-01-27 19:04:23 +0000
committerEllangoK <karun.ellango7@gmail.com>2023-01-27 19:04:23 +0000
commit32d389ef0f7c75dd85fc7aebe7bca279f36fed86 (patch)
treeb3e595e796071bc9defda95f924e54f23ffcbb34
parenta6a5bfb15531b19ce0319593d67d05a356f49a65 (diff)
downloadstable-diffusion-webui-gfx803-32d389ef0f7c75dd85fc7aebe7bca279f36fed86.tar.gz
stable-diffusion-webui-gfx803-32d389ef0f7c75dd85fc7aebe7bca279f36fed86.tar.bz2
stable-diffusion-webui-gfx803-32d389ef0f7c75dd85fc7aebe7bca279f36fed86.zip
changes remaining text from X/Y -> X/Y/Z
-rw-r--r--README.md2
-rw-r--r--javascript/hints.js2
-rw-r--r--scripts/xyz_grid.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c6bd6f27..2149dcc5 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ A browser interface based on Gradio library for Stable Diffusion.
- a man in a (tuxedo:1.21) - alternative syntax
- select text and press ctrl+up or ctrl+down to automatically adjust attention to selected text (code contributed by anonymous user)
- Loopback, run img2img processing multiple times
-- X/Y plot, a way to draw a 2 dimensional plot of images with different parameters
+- X/Y/Z plot, a way to draw a 3 dimensional plot of images with different parameters
- Textual Inversion
- have as many embeddings as you want and use any names you like for them
- use multiple embeddings with different numbers of vectors per token
diff --git a/javascript/hints.js b/javascript/hints.js
index 3cf10e20..7b60b25e 100644
--- a/javascript/hints.js
+++ b/javascript/hints.js
@@ -50,7 +50,7 @@ titles = {
"None": "Do not do anything special",
"Prompt matrix": "Separate prompts into parts using vertical pipe character (|) and the script will create a picture for every combination of them (except for the first part, which will be present in all combinations)",
- "X/Y plot": "Create a grid where images will have different parameters. Use inputs below to specify which parameters will be shared by columns and rows",
+ "X/Y/Z plot": "Create grid(s) where images will have different parameters. Use inputs below to specify which parameters will be shared by columns and rows",
"Custom code": "Run Python code. Advanced user only. Must run program with --allow-code for this to work",
"Prompt S/R": "Separate a list of words with commas, and the first word will be used as a keyword: script will search for this word in the prompt, and replace it with others",
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py
index f2fe506c..f0116055 100644
--- a/scripts/xyz_grid.py
+++ b/scripts/xyz_grid.py
@@ -499,7 +499,7 @@ class Script(scripts.Script):
image_cell_count = p.n_iter * p.batch_size
cell_console_text = f"; {image_cell_count} images per cell" if image_cell_count > 1 else ""
plural_s = 's' if len(zs) > 1 else ''
- print(f"X/Y plot will create {len(xs) * len(ys) * len(zs) * image_cell_count} images on {len(zs)} {len(xs)}x{len(ys)} grid{plural_s}{cell_console_text}. (Total steps to process: {total_steps})")
+ print(f"X/Y/Z plot will create {len(xs) * len(ys) * len(zs) * image_cell_count} images on {len(zs)} {len(xs)}x{len(ys)} grid{plural_s}{cell_console_text}. (Total steps to process: {total_steps})")
shared.total_tqdm.updateTotal(total_steps)
grid_infotext = [None]