From: jp-x-g Date: Sat, 25 Mar 2023 21:53:55 +0000 (-0700) Subject: Clarify console output in convert-pth-to-ggml.py (#512) X-Git-Tag: gguf-v0.4.0~1096 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=f732695cd57fb41e3a1be625cec4edf5be45b40a;p=pkg%2Fggml%2Fsources%2Fllama.cpp Clarify console output in convert-pth-to-ggml.py (#512) "Processing part 1 of 3" instead of "Processing part 0" --- diff --git a/convert-pth-to-ggml.py b/convert-pth-to-ggml.py index f0f6b0ec..ccf2c57b 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)}"