convert-hf : add missing space after comma

This commit is contained in:
Francis Couture-Harpin 2024-05-09 00:08:00 -04:00
parent 59f5a27fc5
commit 3801db12d8

View file

@ -294,7 +294,7 @@ class Model:
# n_dims is implicit in the shape # n_dims is implicit in the shape
logger.info(f"{f'%-{max_name_len}s' % f'{new_name},'} {old_dtype} --> {data_qtype.name}, shape = {shape_str}") logger.info(f"{f'%-{max_name_len}s' % f'{new_name},'} {old_dtype} --> {data_qtype.name}, shape = {shape_str}")
self.gguf_writer.add_tensor(new_name, data,raw_dtype=data_qtype) self.gguf_writer.add_tensor(new_name, data, raw_dtype=data_qtype)
def write(self): def write(self):
self.write_tensors() self.write_tensors()