Skip to content

Commit

Permalink
Fix missing lora path argument
Browse files Browse the repository at this point in the history
  • Loading branch information
li-plus committed Mar 6, 2024
1 parent eff7f44 commit a790a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatglm_cpp/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ def main():
args = parser.parse_args()

with open(args.save_path, "wb") as f:
convert(f, args.model_name_or_path, dtype=args.type)
convert(f, args.model_name_or_path, args.lora_model_name_or_path, dtype=args.type)

print(f"GGML model saved to {args.save_path}")

Expand Down

0 comments on commit a790a42

Please sign in to comment.