aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-10-12 17:49:47 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-10-12 17:49:47 +0000
commitc3c8eef9fd5a0c8b26319e32ca4a19b56204e6df (patch)
tree56e3cbdbb3b535b87c173a7a71abfcce21578af9 /modules/ui.py
parentcc5803603b8591075542d99ae8596ab5b130a82f (diff)
downloadstable-diffusion-webui-gfx803-c3c8eef9fd5a0c8b26319e32ca4a19b56204e6df.tar.gz
stable-diffusion-webui-gfx803-c3c8eef9fd5a0c8b26319e32ca4a19b56204e6df.tar.bz2
stable-diffusion-webui-gfx803-c3c8eef9fd5a0c8b26319e32ca4a19b56204e6df.zip
train: change filename processing to be more simple and configurable
train: make it possible to make text files with prompts train: rework scheduler so that there's less repeating code in textual inversion and hypernets train: move epochs setting to options
Diffstat (limited to 'modules/ui.py')
-rw-r--r--modules/ui.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py
index 2b332267..c42535c8 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -1098,7 +1098,6 @@ def create_ui(wrap_gradio_gpu_call):
training_width = gr.Slider(minimum=64, maximum=2048, step=64, label="Width", value=512)
training_height = gr.Slider(minimum=64, maximum=2048, step=64, label="Height", value=512)
steps = gr.Number(label='Max steps', value=100000, precision=0)
- num_repeats = gr.Number(label='Number of repeats for a single input image per epoch', value=100, precision=0)
create_image_every = gr.Number(label='Save an image to log directory every N steps, 0 to disable', value=500, precision=0)
save_embedding_every = gr.Number(label='Save a copy of embedding to log directory every N steps, 0 to disable', value=500, precision=0)
save_image_with_stored_embedding = gr.Checkbox(label='Save images with embedding in PNG chunks', value=True)
@@ -1176,7 +1175,6 @@ def create_ui(wrap_gradio_gpu_call):
training_width,
training_height,
steps,
- num_repeats,
create_image_every,
save_embedding_every,
template_file,