Skip to content

Commit f732695

Browse files
authored
Clarify console output in convert-pth-to-ggml.py (#512)
"Processing part 1 of 3" instead of "Processing part 0"
1 parent 2f7bf7d commit f732695

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

convert-pth-to-ggml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def main():
161161

162162
for p in range(n_parts):
163163

164-
print(f"Processing part {p}\n")
164+
print(f"Processing part {p+1} of {n_parts}\n")
165165

166166
fname_model = f"{dir_model}/consolidated.0{p}.pth"
167167
fname_out = f"{dir_model}/ggml-model-{ftype_str[ftype]}.bin{'' if p == 0 else '.' + str(p)}"

0 commit comments

Comments
 (0)