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).

Examples found in repository?
examples/zimage_stepcheck.rs (line 37)
32fn main() {
33    let a: Vec<String> = std::env::args().collect();
34    let model = Arc::new(cortiq_core::CmfModel::open(&a[1]).unwrap());
35    let (prompt, hh, ww) = (&a[2], a[3].parse::<usize>().unwrap(), a[4].parse::<usize>().unwrap());
36    let (steps, shift, i) = (a[5].parse::<usize>().unwrap(), a[6].parse::<f32>().unwrap(), a[7].parse::<usize>().unwrap());
37    let tok = Tokenizer::from_bytes(model.vocab.as_deref().unwrap()).unwrap();
38    let ids = cortiq_engine::zimagegen::prompt_ids(&tok, prompt, 512);
39    let cap = {
40        let _p = cortiq_engine::gpu::pause_gpu();
41        cortiq_engine::qwen3te::Qwen3Encoder::from_cmf(&model).unwrap().encode(&ids)
42    };
43    let dit = ZImageDit::from_cmf(&model).unwrap();
44    let sig = zimage::sigmas_torch_f32(steps, shift);
45    let t = zimage::t_model(sig[i]);
46    let mods = dit.mods_for_steps(&[t]);
47    let fs = dit.final_scale_for_steps(&[t]);
48    let shape = ZShape::new(hh, ww, ids.len());
49    let prep = dit.prepare(&cap, shape, 1, None).unwrap();
50    println!("device prepared: {}", prep.device);
51    let (c, lh, lw) = (dit.cfg.in_channels, hh / 8, ww / 8);
52    let lat = |dir: &str| -> Vec<f32> {
53        if i == 0 {
54            read_f32(&std::env::var("CMF_INIT_LATENT").unwrap())
55        } else {
56            read_f32(&format!("{dir}/lat_{i}.f32"))
57        }
58    };
59    let xa = lat(&a[8]);
60    // `ZC_NEG=<negative prompt>`: the CFG pair as one batch-2 device
61    // forward against the two items stepped one by one.
62    if let Ok(neg) = std::env::var("ZC_NEG") {
63        let nids = cortiq_engine::zimagegen::prompt_ids(&tok, &neg, 512);
64        let ncap = {
65            let _p = cortiq_engine::gpu::pause_gpu();
66            cortiq_engine::qwen3te::Qwen3Encoder::from_cmf(&model).unwrap().encode(&nids)
67        };
68        let mut np = dit.prepare(&ncap, ZShape::new(hh, ww, nids.len()), 2, None).unwrap();
69        let tok_a = dit.tokens(&xa, &shape);
70        let vp = dit.step(&prep, i, &tok_a, &mods, &fs);
71        let vn = dit.step(&np, i, &tok_a, &mods, &fs);
72        np.device = false;
73        let vn_cpu = dit.step(&np, i, &tok_a, &mods, &fs);
74        let ok = dit.attach_device_pair(&prep, &np, 3, None);
75        println!("pair prepared: {ok}  (neg L = {})", nids.len());
76        if let Some((pp, pn)) = dit.step_pair_device(3, shape.n_img, i, &tok_a, &mods, &fs) {
77            let nan = pp.iter().chain(&pn).filter(|v| !v.is_finite()).count();
78            println!("pair vs singles: pos {:.3e}  neg {:.3e}  non-finite {nan}   single neg dev vs cpu {:.3e}",
79                rel(&pp, &vp), rel(&pn, &vn), rel(&vn, &vn_cpu));
80        }
81        return;
82    }
83    let tok_a = dit.tokens(&xa, &shape);
84    let va_dev = zimage::unpatchify(&dit.step(&prep, i, &tok_a, &mods, &fs), c, lh, lw);
85    let mut hp = zimage::ZPrepared { device: false, ..prep };
86    let va_cpu = zimage::unpatchify(&dit.step(&hp, i, &tok_a, &mods, &fs), c, lh, lw);
87    let va_tr = read_f32(&format!("{}/v_{i}.f32", a[8]));
88    println!("step {i} on A's lat: dev vs cpu {:.3e}   cpu vs A's v {:.3e}   dev vs A's v {:.3e}",
89        rel(&va_dev, &va_cpu), rel(&va_cpu, &va_tr), rel(&va_dev, &va_tr));
90    if let Some(b) = a.get(9) {
91        hp.device = true;
92        let xb = lat(b);
93        let vb_dev = zimage::unpatchify(&dit.step(&hp, i, &dit.tokens(&xb, &shape), &mods, &fs), c, lh, lw);
94        println!("inputs A vs B {:.3e}   device outputs {:.3e}   (B's own v {:.3e})",
95            rel(&xb, &xa), rel(&vb_dev, &va_dev), rel(&read_f32(&format!("{b}/v_{i}.f32")), &va_dev));
96    }
97}
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 decode_token_for_hash(&self, id: u32) -> String

Decode one vocabulary entry for Engram’s compressed token map while retaining special tokens.

Source

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

Decode generated protocol text while retaining special markers. The V4.1 harmony parser needs <think>, EOS, and spaced DSML tags.

Source

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

Return the backend vocabulary spelling for an Engram map entry.

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_json( &self, messages: &[Value], tools: Option<&[Value]>, 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. Chat template with the FULL message shape and a tool list.

The pair-based API below flattens every message to (role, text), which silently drops exactly what agentic use needs: the tools array, role: "tool" results, and tool_calls on assistant turns. The templates this format embeds — Qwen-family, Nanbeige — have carried a {%- if tools %} branch all along; this is the call that finally feeds it. Messages arrive as JSON objects in the OpenAI shape and pass through to minijinja unflattened, so a template sees the same fields a Python apply_chat_template would.

Source

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

Render the template against JSON-shaped messages (parity surface).

Source

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

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 token_to_id(&self, token: &str) -> Option<u32>

Return the ID for an exact token spelling, including added/special tokens. Multimodal prompt preparation uses this to validate the image placeholder against the model configuration.

Source

pub fn convert_tokens_to_ids(&self, token: &str) -> Option<u32>

Alias matching the HuggingFace tokenizer API used by the official DeepSeek image processor.

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 = !

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

fn try_from(value: U) -> Result<T, !>

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