Skip to content

Commit 02bee4f

Browse files
committed
added --seamless tag logging to normalize_prompt
1 parent d922b53 commit 02bee4f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ldm/dream/pngwriter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ def normalize_prompt(self):
5959
switches.append(f'-H{opt.height or t2i.height}')
6060
switches.append(f'-C{opt.cfg_scale or t2i.cfg_scale}')
6161
switches.append(f'-A{opt.sampler_name or t2i.sampler_name}')
62+
if opt.seamless or t2i.seamless:
63+
switches.append(f'--seamless')
6264
if opt.init_img:
6365
switches.append(f'-I{opt.init_img}')
6466
if opt.fit:

0 commit comments

Comments
 (0)