fix: Apply phi to merged updates

Signed-off-by: teleprint-me <77757836+teleprint-me@users.noreply.github.com>
This commit is contained in:
teleprint-me 2023-12-12 23:34:47 -05:00
parent 1aa3392685
commit 748f376746
No known key found for this signature in database
GPG key ID: B0D11345E65C4D48

View file

@ -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
}