Skip to content

Commit

Permalink
added --seamless tag logging to normalize_prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
prixt committed Sep 3, 2022
1 parent d922b53 commit 02bee4f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ldm/dream/pngwriter.py
Expand Up @@ -59,6 +59,8 @@ def normalize_prompt(self):
switches.append(f'-H{opt.height or t2i.height}')
switches.append(f'-C{opt.cfg_scale or t2i.cfg_scale}')
switches.append(f'-A{opt.sampler_name or t2i.sampler_name}')
if opt.seamless or t2i.seamless:
switches.append(f'--seamless')
if opt.init_img:
switches.append(f'-I{opt.init_img}')
if opt.fit:
Expand Down

0 comments on commit 02bee4f

Please sign in to comment.