aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorWilliam Moorehouse <moorehousew@gmail.com>2022-09-28 18:00:48 -0400
committerGitHub <noreply@github.com>2022-09-29 01:00:48 +0300
commit041d2aefc082c2883aa7e28ee3e4a990b3be9758 (patch)
treeb1ffe3127955e7d20c15965c21f906449f872862 /modules
parent7acfaca05a13352a7d86d281db6ad64dfd9350e0 (diff)
Respect --ckpt-dir command-line argument when merging models (#1261)
* Update .gitignore to ignore *all* checkpoint files in /models * Fixed typo in UI
Diffstat (limited to 'modules')
-rw-r--r--modules/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py
index 4958036a..87024238 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -869,7 +869,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo, run_modelmerger):
with gr.Blocks() as modelmerger_interface:
with gr.Row().style(equal_height=False):
with gr.Column(variant='panel'):
- gr.HTML(value="<p>A merger of the two checkpoints will be generated in your <b>/models</b> directory.</p>")
+ gr.HTML(value="<p>A merger of the two checkpoints will be generated in your <b>checkpoint</b> directory.</p>")
with gr.Row():
primary_model_name = gr.Dropdown(modules.sd_models.checkpoint_tiles(), elem_id="modelmerger_primary_model_name", label="Primary Model Name")