From 748f37674636bd384c03a1a3395b7305fcc03bdf Mon Sep 17 00:00:00 2001 From: teleprint-me <77757836+teleprint-me@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:34:47 -0500 Subject: [PATCH] fix: Apply phi to merged updates Signed-off-by: teleprint-me <77757836+teleprint-me@users.noreply.github.com> --- gguf-py/gguf/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gguf-py/gguf/constants.py b/gguf-py/gguf/constants.py index 685c88f1a..fde3195b7 100644 --- a/gguf-py/gguf/constants.py +++ b/gguf-py/gguf/constants.py @@ -93,6 +93,7 @@ class MODEL_ARCH(IntEnum): BLOOM = auto() STABLELM = auto() QWEN = auto() + PHI = auto() class MODEL_TENSOR(IntEnum): @@ -336,6 +337,9 @@ MODEL_TENSORS: dict[MODEL_ARCH, list[MODEL_TENSOR]] = { MODEL_ARCH.GPT2: [ # TODO ], + MODEL_ARCH.PHI: [ + # TODO + ], # TODO }