]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
Clarify console output in convert-pth-to-ggml.py (#512)
authorjp-x-g <redacted>
Sat, 25 Mar 2023 21:53:55 +0000 (14:53 -0700)
committerGitHub <redacted>
Sat, 25 Mar 2023 21:53:55 +0000 (23:53 +0200)
"Processing part 1 of 3" instead of "Processing part 0"

convert-pth-to-ggml.py

index f0f6b0ec47832a7638f7876cb59c7b2a64160d4b..ccf2c57b1e6970aaa9077a8eb1977fa398c924e2 100644 (file)
@@ -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)}"