(self, path: Path)
| 1426 | _VOCAB_CLASSES: list[type[Vocab]] = [SentencePieceVocab, BpeVocab, LlamaHfVocab] |
| 1427 | |
| 1428 | def __init__(self, path: Path): |
| 1429 | self.path = path |
| 1430 | |
| 1431 | def _create_special_vocab(self, vocab: BaseVocab, model_parent_path: Path) -> gguf.SpecialVocab: |
| 1432 | load_merges = vocab.name == "bpe" |
nothing calls this directly
no outgoing calls
no test coverage detected