From 5d490d899fc05e7950f5cf80cb737b511faa7867 Mon Sep 17 00:00:00 2001 From: Konstantin Pereiaslov Date: Tue, 26 Jul 2022 22:09:11 -0500 Subject: [PATCH] Update default config and ckpt paths in txt2img.py --- scripts/txt2img.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/txt2img.py b/scripts/txt2img.py index 37797ac9..7f6a2c9a 100644 --- a/scripts/txt2img.py +++ b/scripts/txt2img.py @@ -163,13 +163,13 @@ def main(): parser.add_argument( "--config", type=str, - default="logs/f8-kl-clip-encoder-256x256-run1/configs/2022-06-01T22-11-40-project.yaml", + default="configs/latent-diffusion/txt2img-1p4B-eval.yaml", help="path to config which constructs model", ) parser.add_argument( "--ckpt", type=str, - default="logs/f8-kl-clip-encoder-256x256-run1/checkpoints/last.ckpt", + default="models/ldm/text2img-large/model.ckpt", help="path to checkpoint of model", ) parser.add_argument(