mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
b1da13a984
- 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)
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
# This file describes the alternative machine learning models
|
|
# available to the dream script.
|
|
#
|
|
# To add a new model, follow the examples below. Each
|
|
# model requires a model config file, a weights file,
|
|
# and the width and height of the images it
|
|
# was trained on.
|
|
stable-diffusion-1.4:
|
|
config: configs/stable-diffusion/v1-inference.yaml
|
|
weights: models/ldm/stable-diffusion-v1/model.ckpt
|
|
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
|
description: Stable Diffusion inference model version 1.4
|
|
width: 512
|
|
height: 512
|
|
default: true
|
|
inpainting-1.5:
|
|
description: runwayML tuned inpainting model v1.5
|
|
weights: models/ldm/stable-diffusion-v1/sd-v1-5-inpainting.ckpt
|
|
config: configs/stable-diffusion/v1-inpainting-inference.yaml
|
|
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
|
width: 512
|
|
height: 512
|
|
stable-diffusion-1.5:
|
|
config: configs/stable-diffusion/v1-inference.yaml
|
|
weights: models/ldm/stable-diffusion-v1/v1-5-pruned-emaonly.ckpt
|
|
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
|
description: Stable Diffusion inference model version 1.5
|
|
width: 512
|
|
height: 512
|