09a3d3ab17
Copilot Setup Steps / copilot-setup-steps (push) Failing after 2s
Python check requirements.txt / check-requirements (push) Has been cancelled
Python Type-Check / python type-check (push) Has been cancelled
Update Operations Documentation / update-ops-docs (push) Has been cancelled
Check Pre-Tokenizer Hashes / pre-tokenizer-hashes (push) Has been cancelled
15 lines
409 B
Python
15 lines
409 B
Python
from __future__ import annotations
|
|
|
|
from .base import ModelBase, TextModel, gguf
|
|
|
|
|
|
@ModelBase.register("MaincoderForCausalLM")
|
|
class MaincoderModel(TextModel):
|
|
model_arch = gguf.MODEL_ARCH.MAINCODER
|
|
|
|
def set_gguf_parameters(self):
|
|
super().set_gguf_parameters()
|
|
|
|
if (head_dim := self.hparams.get("head_dim")) is not None:
|
|
self.gguf_writer.add_rope_dimension_count(head_dim)
|