diff --git a/convert-hf-to-gguf-update.py b/convert-hf-to-gguf-update.py index deca36bf9..7e0a808fa 100644 --- a/convert-hf-to-gguf-update.py +++ b/convert-hf-to-gguf-update.py @@ -140,15 +140,15 @@ src_func += "\n" src_func += " # NOTE: if you get an error here, you need to add the model to the if-elif chain below\n" src_func += f"{src_ifs}\n" src_func += " if res is None:\n" -src_func += " print(f\"\\n\")\n" -src_func += " print(f\"**************************************************************************************\")\n" -src_func += " print(f\"** WARNING: The BPE pre-tokenizer was not recognized!\")\n" -src_func += " print(f\"** This means that it was not added yet or you are using an older version.\")\n" -src_func += " print(f\"** Check convert-hf-to-gguf-update.py and update it accordingly.\")\n" -src_func += " print(f\"**\")\n" +src_func += " print( \"\\n\")\n" +src_func += " print( \"**************************************************************************************\")\n" +src_func += " print( \"** WARNING: The BPE pre-tokenizer was not recognized!\")\n" +src_func += " print( \"** This means that it was not added yet or you are using an older version.\")\n" +src_func += " print( \"** Check convert-hf-to-gguf-update.py and update it accordingly.\")\n" +src_func += " print( \"**\")\n" src_func += " print(f\"** chkhsh: {chkhsh}\")\n" -src_func += " print(f\"**************************************************************************************\")\n" -src_func += " print(f\"\\n\")\n" +src_func += " print( \"**************************************************************************************\")\n" +src_func += " print( \"\\n\")\n" src_func += " raise NotImplementedError(\"BPE pre-tokenizer was not recognized - update get_vocab_base_pre()\")\n" src_func += "\n" src_func += " print(f\"tokenizer.ggml.pre: {res}\")\n" diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py index 56475a49a..b5ddae733 100755 --- a/convert-hf-to-gguf.py +++ b/convert-hf-to-gguf.py @@ -414,15 +414,15 @@ class Model(ABC): res = "bert-bge" if res is None: - print(f"\n") - print(f"**************************************************************************************") - print(f"** WARNING: The BPE pre-tokenizer was not recognized!") - print(f"** This means that it was not added yet or you are using an older version.") - print(f"** Check convert-hf-to-gguf-update.py and update it accordingly.") - print(f"**") + print( "\n") + print( "**************************************************************************************") + print( "** WARNING: The BPE pre-tokenizer was not recognized!") + print( "** This means that it was not added yet or you are using an older version.") + print( "** Check convert-hf-to-gguf-update.py and update it accordingly.") + print( "**") print(f"** chkhsh: {chkhsh}") - print(f"**************************************************************************************") - print(f"\n") + print( "**************************************************************************************") + print( "\n") raise NotImplementedError("BPE pre-tokenizer was not recognized - update get_vocab_base_pre()") print(f"tokenizer.ggml.pre: {res}") diff --git a/requirements/requirements-convert-hf-to-gguf-convert.txt b/requirements/requirements-convert-hf-to-gguf-update.txt similarity index 100% rename from requirements/requirements-convert-hf-to-gguf-convert.txt rename to requirements/requirements-convert-hf-to-gguf-update.txt