Return the llama tokenizer for this model.
(self)
| 2258 | return self._model.n_vocab() |
| 2259 | |
| 2260 | def tokenizer(self) -> LlamaTokenizer: |
| 2261 | """Return the llama tokenizer for this model.""" |
| 2262 | return LlamaTokenizer(self) |
| 2263 | |
| 2264 | def token_eos(self) -> int: |
| 2265 | """Return the end-of-sequence token.""" |
nothing calls this directly
no test coverage detected