convert-hf : print output file name when completed

This commit adds the output file name to the log message when the
conversion is completed.

The motivation for this change is that when `--outfile` option is not
specified it migth not be obvious where the output file is written.

With this change the output of running the script will be something like
the following:
```console
INFO:hf-to-gguf:Model successfully exported to models/gemma-2-9b-it.gguf.
```

Signed-off-by: Daniel Bevenius <daniel.bevenius@gmail.com>
This commit is contained in:
Daniel Bevenius 2024-06-28 09:02:54 +02:00
parent e57dc62057
commit 242383371b
Failed to extract signature

View file

@ -3128,11 +3128,11 @@ def main() -> None:
if args.vocab_only:
logger.info("Exporting model vocab...")
model_instance.write_vocab()
logger.info("Model vocab successfully exported.")
logger.info(f"Model vocab successfully exported to {fname_out}.")
else:
logger.info("Exporting model...")
model_instance.write()
logger.info("Model successfully exported.")
logger.info(f"Model successfully exported to {fname_out}.")
if __name__ == '__main__':