From d52df2102a1887be456ee33d70d81c8ed00a710a Mon Sep 17 00:00:00 2001 From: Abhishek Gopinath K <31348521+overtunned@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:02:17 +0530 Subject: [PATCH] Update convert-hf-to-gguf.py Removing the print statement as its not required. Co-authored-by: Jared Van Bortel --- convert-hf-to-gguf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py index 6689491d3..6470f3e45 100755 --- a/convert-hf-to-gguf.py +++ b/convert-hf-to-gguf.py @@ -323,7 +323,6 @@ class Model(ABC): toktypes: list[int] = [] if not tokenizer_path.is_file(): - print(f'Error: Missing {tokenizer_path}', file=sys.stderr) raise FileNotFoundError(f"File not found: {tokenizer_path}") tokenizer = SentencePieceProcessor(str(tokenizer_path))