Skip to main content

Tokenizer

Struct Tokenizer 

Source
pub struct Tokenizer {
    pub bos_token_id: Option<u32>,
    pub eos_token_id: Option<u32>,
    pub pad_token_id: Option<u32>,
    pub im_start_id: Option<u32>,
    pub im_end_id: Option<u32>,
    pub chat_template: Option<String>,
    pub extra_eos: HashSet<u32>,
    pub add_bos: bool,
    /* private fields */
}
Expand description

A loaded BPE tokenizer.

Fields§

§bos_token_id: Option<u32>

Special tokens

§eos_token_id: Option<u32>§pad_token_id: Option<u32>§im_start_id: Option<u32>

Chat template special tokens

§im_end_id: Option<u32>§chat_template: Option<String>

Jinja chat template carried by the container (spec §6.1); None → hardcoded ChatML fallback.

§extra_eos: HashSet<u32>

Extra stop ids from the container’s generation config.

§add_bos: bool

Generation prepends BOS (llama post_processor semantics).

Implementations§

Source§

impl Tokenizer

Source

pub fn from_file(path: impl AsRef<Path>) -> Result<Self, TokenizerError>

Load tokenizer from HuggingFace tokenizer.json file.

Source

pub fn from_bytes(bytes: &[u8]) -> Result<Self, TokenizerError>

Load tokenizer from raw tokenizer.json bytes (CMF VOCAB section).

Source

pub fn from_json(json: &str) -> Result<Self, TokenizerError>

Load tokenizer from JSON string.

Source

pub fn byte_level() -> Self

Create a minimal tokenizer for testing (byte tokens, no merges).

Source

pub fn encode(&self, text: &str) -> Vec<u32>

Encode text to token IDs.

Examples found in repository?
examples/topk_probe.rs (line 27)
17fn main() {
18    let args: Vec<String> = std::env::args().collect();
19    if args.len() < 3 {
20        eprintln!("usage: topk_probe <model.cmf> <raw text> [k]");
21        std::process::exit(2);
22    }
23    let k: usize = args.get(3).and_then(|s| s.parse().ok()).unwrap_or(10);
24
25    let model = Arc::new(CmfModel::open_sharded(&args[1]).expect("open model"));
26    let mut pipeline = Pipeline::from_model(&model, SamplerConfig::default()).expect("pipeline");
27    let ids = pipeline.tokenizer.encode(&args[2]);
28    eprintln!("prompt tokens: {}", ids.len());
29    eprintln!("last 8 ids: {:?}", &ids[ids.len().saturating_sub(8)..]);
30
31    let logits = pipeline.prefill_next_logits(&ids, None);
32    let max = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
33    let sum: f64 = logits.iter().map(|&l| ((l - max) as f64).exp()).sum();
34
35    let mut order: Vec<usize> = (0..logits.len()).collect();
36    order.sort_by(|&a, &b| logits[b].total_cmp(&logits[a]));
37    for &i in order.iter().take(k) {
38        let p = ((logits[i] - max) as f64).exp() / sum;
39        println!(
40            "{:>8}  logit {:>9.4}  p {:.6}  {:?}",
41            i,
42            logits[i],
43            p,
44            pipeline.tokenizer.decode_token(i as u32)
45        );
46    }
47}
More examples
Hide additional examples
examples/decode_flat.rs (line 38)
18fn main() {
19    let args: Vec<String> = std::env::args().collect();
20    if args.len() < 4 {
21        eprintln!("usage: decode_flat <model.cmf> <ctx> <tokens> [o1spec|off]");
22        std::process::exit(2);
23    }
24    let path = &args[1];
25    let ctx: usize = args[2].parse().expect("ctx");
26    let tokens: usize = args[3].parse().expect("tokens");
27    let o1spec = args.get(4).cloned().unwrap_or_else(|| "off".to_string());
28
29    let model = Arc::new(CmfModel::open_sharded(path).expect("open model"));
30    let mut pipeline = Pipeline::from_model(&model, SamplerConfig::default()).expect("pipeline");
31    pipeline.set_o1(cortiq_engine::nystrom::O1Cfg::from_spec(
32        &o1spec, None, None, None, None,
33    ));
34    eprintln!("o1_active = {}", pipeline.o1_active());
35
36    // Same synthetic prompt shape as `cortiq bench --ctx`.
37    let prompt = "The quick brown fox jumps over the lazy dog. ".repeat(ctx / 8 + 2);
38    let mut ids = pipeline.tokenizer.encode(&prompt);
39    ids.truncate(ctx);
40    assert_eq!(ids.len(), ctx, "prompt too short for ctx");
41
42    // Warm the mmap so the first token is not billed for page faults.
43    let _ = pipeline.forward_ids(&ids[..2], None).expect("warm");
44
45    let stamps: Arc<std::sync::Mutex<Vec<Instant>>> = Arc::default();
46    let st = stamps.clone();
47    let cb: cortiq_engine::TokenCallback = Box::new(move |_t| {
48        st.lock().unwrap().push(Instant::now());
49        true
50    });
51    let t0 = Instant::now();
52    let _ = pipeline
53        .generate_from_ids(&ids, tokens, None, Some(cb))
54        .expect("generate");
55
56    let stamps = stamps.lock().unwrap();
57    // stamps[0] fires after generation's prefill + the one-off o1 seal:
58    // that gap is TTFT, not a decode step.
59    println!(
60        "ctx={ctx} o1={o1spec} ttft_s={:.3}",
61        stamps[0].duration_since(t0).as_secs_f64()
62    );
63    println!("# idx  ms");
64    for i in 1..stamps.len() {
65        println!(
66            "{:4}  {:7.2}",
67            i,
68            (stamps[i] - stamps[i - 1]).as_secs_f64() * 1e3
69        );
70    }
71    // Mean of the last half — past any startup transient.
72    let half = stamps.len() / 2;
73    if stamps.len() > 2 && half >= 1 {
74        let dt = (stamps[stamps.len() - 1] - stamps[half]).as_secs_f64();
75        let n = (stamps.len() - 1 - half) as f64;
76        println!(
77            "last-half: {:.2} ms/tok = {:.2} tok/s",
78            dt / n * 1e3,
79            n / dt
80        );
81    }
82}
Source

pub fn decode(&self, ids: &[u32]) -> String

Decode token IDs back to text. Special tokens are skipped; added tokens are raw text; everything else reverses the byte-level map.

Source

pub fn decode_token(&self, id: u32) -> String

Streaming decode of ONE token: no sequence-level Strip — a per-token strip would eat the ▁-spaces of every SP word.

Examples found in repository?
examples/topk_probe.rs (line 44)
17fn main() {
18    let args: Vec<String> = std::env::args().collect();
19    if args.len() < 3 {
20        eprintln!("usage: topk_probe <model.cmf> <raw text> [k]");
21        std::process::exit(2);
22    }
23    let k: usize = args.get(3).and_then(|s| s.parse().ok()).unwrap_or(10);
24
25    let model = Arc::new(CmfModel::open_sharded(&args[1]).expect("open model"));
26    let mut pipeline = Pipeline::from_model(&model, SamplerConfig::default()).expect("pipeline");
27    let ids = pipeline.tokenizer.encode(&args[2]);
28    eprintln!("prompt tokens: {}", ids.len());
29    eprintln!("last 8 ids: {:?}", &ids[ids.len().saturating_sub(8)..]);
30
31    let logits = pipeline.prefill_next_logits(&ids, None);
32    let max = logits.iter().cloned().fold(f32::NEG_INFINITY, f32::max);
33    let sum: f64 = logits.iter().map(|&l| ((l - max) as f64).exp()).sum();
34
35    let mut order: Vec<usize> = (0..logits.len()).collect();
36    order.sort_by(|&a, &b| logits[b].total_cmp(&logits[a]));
37    for &i in order.iter().take(k) {
38        let p = ((logits[i] - max) as f64).exp() / sum;
39        println!(
40            "{:>8}  logit {:>9.4}  p {:.6}  {:?}",
41            i,
42            logits[i],
43            p,
44            pipeline.tokenizer.decode_token(i as u32)
45        );
46    }
47}
Source

pub fn apply_chat_template(&self, messages: &[(String, String)]) -> Vec<u32>

Render the container’s Jinja chat template (HF semantics: trim_blocks + lstrip_blocks + loop controls) and encode it. Falls back to hardcoded ChatML when the file carries none.

Source

pub fn apply_chat_template_opts( &self, messages: &[(String, String)], enable_thinking: Option<bool>, ) -> Vec<u32>

Like apply_chat_template, with an explicit enable_thinking value for reasoning-model templates (Qwen3/3.5 emit an empty block when it is false, so the model answers directly). None leaves the variable undefined — the template’s own default applies.

Source

pub fn with_bos(&self, ids: Vec<u32>) -> Vec<u32>

Prepend BOS when the tokenizer declares it (llama family).

Source

pub fn render_chat(&self, messages: &[(String, String)]) -> Option<String>

Render the carried template to text (parity-testable surface).

Source

pub fn render_chat_opts( &self, messages: &[(String, String)], enable_thinking: Option<bool>, ) -> Option<String>

Render the carried template to text with explicit thinking mode.

Source

pub fn vocab_size(&self) -> usize

Vocabulary size.

Source

pub fn is_eos(&self, id: u32) -> bool

Check if token ID is EOS.

Trait Implementations§

Source§

impl Debug for Tokenizer

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more