From f658e91f4a2eadf164494503d1c58c0e40e31fdc Mon Sep 17 00:00:00 2001 From: Christian Zhou-Zheng Date: Sat, 8 Jun 2024 08:10:12 -0400 Subject: [PATCH] comma consistency --- convert-hf-to-gguf.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py index c56e416c2..0edc58142 100755 --- a/convert-hf-to-gguf.py +++ b/convert-hf-to-gguf.py @@ -2801,23 +2801,23 @@ def parse_args() -> argparse.Namespace: ) parser.add_argument( "--split", action="store_true", - help="split the converted model into multiple files" + help="split the converted model into multiple files", ) parser.add_argument( "--split-max-tensors", type=int, - help="max tensors in each split" + help="max tensors in each split", ) parser.add_argument( "--split-max-size", type=str, - help="max size per split N(M|G)" + help="max size per split N(M|G)", ) parser.add_argument( "--dry-run", action="store_true", - help="only print out a split plan and exit, without writing any new files" + help="only print out a split plan and exit, without writing any new files", ) parser.add_argument( "--small-first-shard", action="store_true", - help="do not add tensors to the first shard (disabled by default)" + help="do not add tensors to the first shard (disabled by default)", ) return parser.parse_args()