mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
minor cleanups
- change default model back to 1.4 - remove --fnformat from canonicalized dream prompt arguments (not needed for image reproducibility) - add -tm to canonicalized dream prompt arguments (definitely needed for image reproducibility)
This commit is contained in:
parent
906dafe3cd
commit
b1da13a984
@ -12,6 +12,7 @@ stable-diffusion-1.4:
|
|||||||
description: Stable Diffusion inference model version 1.4
|
description: Stable Diffusion inference model version 1.4
|
||||||
width: 512
|
width: 512
|
||||||
height: 512
|
height: 512
|
||||||
|
default: true
|
||||||
inpainting-1.5:
|
inpainting-1.5:
|
||||||
description: runwayML tuned inpainting model v1.5
|
description: runwayML tuned inpainting model v1.5
|
||||||
weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt
|
weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt
|
||||||
@ -19,7 +20,6 @@ inpainting-1.5:
|
|||||||
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
||||||
width: 512
|
width: 512
|
||||||
height: 512
|
height: 512
|
||||||
default: true
|
|
||||||
stable-diffusion-1.5:
|
stable-diffusion-1.5:
|
||||||
config: configs/stable-diffusion/v1-inference.yaml
|
config: configs/stable-diffusion/v1-inference.yaml
|
||||||
weights: models/ldm/stable-diffusion-v1/v1-5-pruned-emaonly.ckpt
|
weights: models/ldm/stable-diffusion-v1/v1-5-pruned-emaonly.ckpt
|
||||||
|
@ -219,7 +219,6 @@ class Args(object):
|
|||||||
switches.append(f'-W {a["width"]}')
|
switches.append(f'-W {a["width"]}')
|
||||||
switches.append(f'-H {a["height"]}')
|
switches.append(f'-H {a["height"]}')
|
||||||
switches.append(f'-C {a["cfg_scale"]}')
|
switches.append(f'-C {a["cfg_scale"]}')
|
||||||
switches.append(f'--fnformat {a["fnformat"]}')
|
|
||||||
if a['perlin'] > 0:
|
if a['perlin'] > 0:
|
||||||
switches.append(f'--perlin {a["perlin"]}')
|
switches.append(f'--perlin {a["perlin"]}')
|
||||||
if a['threshold'] > 0:
|
if a['threshold'] > 0:
|
||||||
@ -245,6 +244,8 @@ class Args(object):
|
|||||||
switches.append(f'-f {a["strength"]}')
|
switches.append(f'-f {a["strength"]}')
|
||||||
if a['inpaint_replace']:
|
if a['inpaint_replace']:
|
||||||
switches.append(f'--inpaint_replace')
|
switches.append(f'--inpaint_replace')
|
||||||
|
if a['text_mask']:
|
||||||
|
switches.append(f'-tm {" ".join([str(u) for u in a["text_mask"]])}')
|
||||||
else:
|
else:
|
||||||
switches.append(f'-A {a["sampler_name"]}')
|
switches.append(f'-A {a["sampler_name"]}')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user