remove unnecessary newline

This commit is contained in:
Kohya S
2023-05-11 21:20:18 +09:00
parent dfc56e9227
commit af08c56ce0
4 changed files with 5 additions and 5 deletions

View File

@@ -160,7 +160,7 @@ def merge(args):
new_conv_rank = args.new_conv_rank if args.new_conv_rank is not None else args.new_rank
state_dict = merge_lora_models(args.models, args.ratios, args.new_rank, new_conv_rank, args.device, merge_dtype)
print(f"\nsaving model to: {args.save_to}")
print(f"saving model to: {args.save_to}")
save_to_file(args.save_to, state_dict, save_dtype)