default --ckpt_convert to true

This commit is contained in:
Lincoln Stein
2023-03-31 01:51:45 -04:00
parent 8fbe019273
commit 74ff73ffc8
2 changed files with 2 additions and 1 deletions

View File

@@ -65,6 +65,7 @@ def main():
Globals.disable_xformers = not args.xformers
Globals.sequential_guidance = args.sequential_guidance
Globals.ckpt_convert = args.ckpt_convert
print(f'DEBUG: ckpt_convert = {args.ckpt_convert}')
# run any post-install patches needed
run_patches()

View File

@@ -522,7 +522,7 @@ class Args(object):
'--ckpt_convert',
action=argparse.BooleanOptionalAction,
dest='ckpt_convert',
default=False,
default=True,
help='Load legacy ckpt files as diffusers. Pass --no-ckpt-convert to inhibit this behavior',
)
model_group.add_argument(