From 6c8e898f099c8bd95b15b97ab4badbffddbb8463 Mon Sep 17 00:00:00 2001 From: Kent Keirsey <31807370+hipsterusername@users.noreply.github.com> Date: Thu, 10 Aug 2023 16:00:33 -0400 Subject: [PATCH] Update scripts/verify_checkpoint_template.py Co-authored-by: Eugene Brodsky --- scripts/verify_checkpoint_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/verify_checkpoint_template.py b/scripts/verify_checkpoint_template.py index 68ed72037e..15194290f5 100755 --- a/scripts/verify_checkpoint_template.py +++ b/scripts/verify_checkpoint_template.py @@ -12,7 +12,7 @@ from pathlib import Path from invokeai.backend.model_management.models.base import read_checkpoint_meta -parser = argparse.ArgumentParser(description="Create a .json template from checkpoint/safetensors model") +parser = argparse.ArgumentParser(description="Compare a checkpoint/safetensors file to a JSON metadata template.") parser.add_argument("--checkpoint", "--in", type=Path, help="Path to the input checkpoint/safetensors file") parser.add_argument("--template", "--out", type=Path, help="Path to the template .json file to match against")