aboutsummaryrefslogtreecommitdiff
path: root/convert-pth-to-ggml.py
diff options
context:
space:
mode:
authorjp-x-g <jpxg-dev@protonmail.com>2023-03-25 14:53:55 -0700
committerGitHub <noreply@github.com>2023-03-25 23:53:55 +0200
commitf732695cd57fb41e3a1be625cec4edf5be45b40a (patch)
tree1af4031b64bb1774a46270574949f2d36307fc62 /convert-pth-to-ggml.py
parent2f7bf7dd7cd7299874d582f7f34834418abf4057 (diff)
Clarify console output in convert-pth-to-ggml.py (#512)
"Processing part 1 of 3" instead of "Processing part 0"
Diffstat (limited to 'convert-pth-to-ggml.py')
-rw-r--r--convert-pth-to-ggml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/convert-pth-to-ggml.py b/convert-pth-to-ggml.py
index f0f6b0e..ccf2c57 100644
--- a/convert-pth-to-ggml.py
+++ b/convert-pth-to-ggml.py
@@ -161,7 +161,7 @@ def main():
for p in range(n_parts):
- print(f"Processing part {p}\n")
+ print(f"Processing part {p+1} of {n_parts}\n")
fname_model = f"{dir_model}/consolidated.0{p}.pth"
fname_out = f"{dir_model}/ggml-model-{ftype_str[ftype]}.bin{'' if p == 0 else '.' + str(p)}"