summaryrefslogtreecommitdiff
path: root/convert-hf-to-gguf.py
diff options
context:
space:
mode:
authorBartowski <ckealty1182@gmail.com>2024-05-26 08:28:35 -0400
committerGitHub <noreply@github.com>2024-05-26 15:28:35 +0300
commitc429b33beb35f13934a4dfbe0c138d30b45e5d54 (patch)
tree1f2dd835f2fd1f266ca327a85123bf54214b68e7 /convert-hf-to-gguf.py
parent9146d36fe7e3e911a07438c07efc1bae082f6390 (diff)
llama : add Smaug 70B support (#7402)
Diffstat (limited to 'convert-hf-to-gguf.py')
-rwxr-xr-xconvert-hf-to-gguf.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py
index 51549ac7..bfccf862 100755
--- a/convert-hf-to-gguf.py
+++ b/convert-hf-to-gguf.py
@@ -473,6 +473,9 @@ class Model:
if chkhsh == "27949a2493fc4a9f53f5b9b029c82689cfbe5d3a1929bb25e043089e28466de6":
# ref: https://huggingface.co/jinaai/jina-embeddings-v2-base-de
res = "jina-v2-de"
+ if chkhsh == "c136ed14d01c2745d4f60a9596ae66800e2b61fa45643e72436041855ad4089d":
+ # ref: https://huggingface.co/abacusai/Smaug-Llama-3-70B-Instruct
+ res = "smaug-bpe"
if res is None:
logger.warning("\n")