2022-09-03 15:36:04 +00:00
|
|
|
# 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.
|
|
|
|
|
2022-09-01 18:02:57 +00:00
|
|
|
laion400m:
|
2022-09-03 15:36:04 +00:00
|
|
|
config: configs/latent-diffusion/txt2img-1p4B-eval.yaml
|
2022-09-01 18:02:57 +00:00
|
|
|
weights: models/ldm/text2img-large/model.ckpt
|
|
|
|
width: 256
|
|
|
|
height: 256
|
|
|
|
stable-diffusion-1.4:
|
2022-09-03 15:36:04 +00:00
|
|
|
config: configs/stable-diffusion/v1-inference.yaml
|
2022-09-01 19:21:39 +00:00
|
|
|
weights: models/ldm/stable-diffusion-v1/model.ckpt
|
2022-09-01 18:02:57 +00:00
|
|
|
width: 512
|
2022-09-01 19:21:39 +00:00
|
|
|
height: 512
|