2022-09-03 15:36:04 +00:00
|
|
|
# This file describes the alternative machine learning models
|
2022-10-23 02:28:54 +00:00
|
|
|
# available to the dream script.
|
2022-09-03 15:36:04 +00:00
|
|
|
#
|
|
|
|
# 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.
|
2022-09-01 18:02:57 +00:00
|
|
|
stable-diffusion-1.4:
|
2022-10-23 02:28:54 +00:00
|
|
|
config: configs/stable-diffusion/v1-inference.yaml
|
|
|
|
weights: models/ldm/stable-diffusion-v1/model.ckpt
|
2022-10-24 02:52:32 +00:00
|
|
|
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
2022-10-23 02:28:54 +00:00
|
|
|
description: Stable Diffusion inference model version 1.4
|
|
|
|
width: 512
|
|
|
|
height: 512
|
2022-10-26 12:29:56 +00:00
|
|
|
default: true
|
2022-10-25 14:45:12 +00:00
|
|
|
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
|
2022-10-21 04:28:54 +00:00
|
|
|
stable-diffusion-1.5:
|
2022-10-23 02:28:54 +00:00
|
|
|
config: configs/stable-diffusion/v1-inference.yaml
|
|
|
|
weights: models/ldm/stable-diffusion-v1/v1-5-pruned-emaonly.ckpt
|
2022-10-24 02:52:32 +00:00
|
|
|
# vae: models/ldm/stable-diffusion-v1/vae-ft-mse-840000-ema-pruned.ckpt
|
2022-10-23 02:28:54 +00:00
|
|
|
description: Stable Diffusion inference model version 1.5
|
|
|
|
width: 512
|
|
|
|
height: 512
|