unit
flatten_units(context)
Flatten nested unit context to a flat token list. When using MultiTokenUnitSampler, token_ctx becomes nested [[...], [...], ...]. This helper flattens it for use with coercion functions like b"".join.
Usage
potential.coerce(LLM, f=lambda ctx: b"".join(flatten_units(ctx)))
Args: context: Either a flat list [token1, token2, ...] or nested [[token1, token2], [token3], ...] Returns: list: Flattened list of tokens
Source code in genlm/control/sampler/unit.py
MultiTokenUnitSampler
Bases: TokenSampler
Sampler that groups multiple tokens into larger units.
This sampler enables generation at a coarser granularity than individual tokens by repeatedly sampling tokens until a boundary condition is met. Common use cases:
- Word-level sampling: Group tokens until a word boundary (e.g., whitespace)
- Sentence-level sampling: Group tokens until punctuation marks
- Grammar-based units: Group tokens completing a grammar terminal
The sampler delegates to a subunit_sampler (typically a token-level sampler)
and accumulates samples until the boundary_predicate signals completion. The final
weight is the product of weights from each individual token sample. This ensures that
sampling remains properly weighted w.r.t. the target potential.
Weight calculation: If sampling a unit requires \(n\) token samples with weights \(w_1, w_2, \ldots, w_n\), the unit weight is \(w = \prod_{i=1}^{n} w_i\) (or \(\log w = \sum_{i=1}^{n} \log w_i\) in log-space).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subunit_sampler
|
TokenSampler
|
Sampler for subunits \(s \in \mathcal{B}\) |
required |
boundary_predicate
|
BoundaryPredicate
|
Determines when a sequence of tokens forms
a complete unit. Also controls how to finalize the unit via |
required |
max_subunits_per_unit
|
int
|
Safety timeout to prevent non-termination. Default: 100. |
100
|
Example
Sample word-level units (multi-token)
llm = PromptedLLM.from_name("gpt2") subunit_sampler = DirectTokenSampler(llm)
Word boundaries at whitespace
boundary = TokenSetBoundary({b" ", b"\n"}) unit_sampler = MultiTokenUnitSampler( ... subunit_sampler=subunit_sampler, ... boundary_predicate=boundary, ... max_subunits_per_unit=50 ... )
Units will be words WITH trailing space: [b"hello", b" "]
Source code in genlm/control/sampler/unit.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | |
start_weight()
async
forward()
async
Called by LLaMPPL Model.call() to sample one multi-token unit.
Called by SequenceModel.step() when it calls self.call(unit_sampler).
Source code in genlm/control/sampler/unit.py
sample(flat_token_context, unit_context=None, draw=None)
async
Sample a multi-token unit by running sequence sampling for \(\varphi_{\bm{x}}\). SIS for the localized potential:
- Repeatedly sample \((s_i, w_i) \sim q_{\text{sub}}(\cdot \mid \bm{s}_{<i})\) until boundary
- Accumulate weights: \(w = \overrightarrow{\psi}_{\bm{x}}(\epsilon) \prod_i w_i\)
- Return \((\bm{s}, w)\) where \(\bm{s} \in \mathcal{B}^*\) forms unit \(x \in \mathcal{A}\)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
flat_token_context
|
list
|
Flat sequence of all previously sampled tokens. This is pre-flattened by forward() to ensure compatibility with potentials. |
required |
unit_context
|
list
|
Structured sequence of previously sampled units. Used by boundary predicates that need context. Defaults to []. |
None
|
draw
|
callable
|
Sampling function passed to subunit_sampler |
None
|
Returns:
| Type | Description |
|---|---|
(unit, weight, logp)
|
|
Source code in genlm/control/sampler/unit.py
BoundaryPredicate
Bases: ABC
Abstract base class for boundary predicates.
A boundary predicate determines when a sequence of subunits \(\bm{s} \in \mathcal{B}^*\) forms a complete unit \(x \in \mathcal{A}\).
__call__ method receives unit context and subunit buffer, allowing predicates
to be stateless and context-aware.
finalize_unit method transforms the buffer into the final unit after boundary
detection, allowing predicates to control what tokens are included (e.g., removing
delimiter tokens).
Source code in genlm/control/sampler/unit.py
__call__(unit_context, subunit_buffer)
abstractmethod
Check if subunit buffer forms a complete unit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unit_context
|
list
|
Sequence of completed units \(\bm{x} \in \mathcal{A}^*\) |
required |
subunit_buffer
|
list
|
Current sequence of subunits \(\bm{s} \in \mathcal{B}^*\) |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if \(\bm{s}\) forms a complete unit \(x \in \mathcal{A}\) |
Source code in genlm/control/sampler/unit.py
finalize_unit(subunit_buffer)
Transform buffer into final unit after boundary detected.
Called after __call__ returns True. Override to customize which tokens
are included in the final unit (e.g., to remove delimiter tokens).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subunit_buffer
|
list
|
The buffer that triggered the boundary |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
list
|
The final unit to return |
Note
Default implementation returns the entire buffer unchanged.
Source code in genlm/control/sampler/unit.py
TokenSetBoundary
Bases: BoundaryPredicate
Stateless boundary predicate based on token membership.
A unit is complete when the last subunit is in a specified set of boundary tokens.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
boundary_tokens
|
Iterable
|
Set or iterable of tokens that mark unit boundaries |
required |
Example
boundary = TokenSetBoundary({b" ", b"\n"}) boundary([], [b"hello", b" "]) # True (ends with whitespace)
Unit will be [b"hello", b" "] - boundary token included
Source code in genlm/control/sampler/unit.py
__call__(unit_context, subunit_buffer)
Check boundary (ignore unit_context for stateless predicate).
FixedLengthBoundary
Bases: BoundaryPredicate
Stateless boundary predicate based on fixed unit length. A unit is complete when it reaches a specified number of subunits.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
length
|
int
|
Number of subunits per unit |
required |
Example
boundary = FixedLengthBoundary(10) boundary([], [b"a"] * 9) # False boundary([], [b"a"] * 10) # True
Source code in genlm/control/sampler/unit.py
__call__(unit_context, subunit_buffer)
CFGBoundary
Bases: BoundaryPredicate
Boundary predicate using Lark parser for context-free grammar-based boundaries.
This uses Lark's parser to determine when a sequence of subunits forms a syntactically complete unit according to a context-free grammar.
A unit can be marked as complete when: - The subunit buffer parses successfully - The parse tree's root matches one of the complete_rules
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
grammar_text
|
str
|
Lark grammar specification |
required |
start_rule
|
str
|
Starting rule for parsing (default: "start") |
'start'
|
complete_rules
|
set or None
|
Set of rule names that constitute complete units. If None, any successful parse is complete. If provided, only parses with matching root are complete. |
None
|
min_length
|
int
|
Minimum buffer length before attempting to parse (default: 2) |
2
|
parser_type
|
str
|
Lark parser type: 'earley' (default, supports ambiguity) or 'lalr' (faster) |
'earley'
|
ambiguity
|
str
|
How to handle ambiguous grammars: 'explicit' (default) or 'resolve' |
'explicit'
|
encoding
|
str
|
Text encoding for token decoding (default: "utf-8") |
'utf-8'
|
decode_errors
|
str
|
How to handle decode errors (default: "ignore") |
'ignore'
|
Example
Simple arithmetic grammar
grammar = ''' ... start: expr ... expr: term | expr "+" term ... term: NUMBER ... NUMBER: /[0-9]+/ ... ''' boundary = CFGBoundary(grammar, complete_rules={"start"}) boundary([], [b"1", b"+", b"2"]) # True (complete expression) boundary([], [b"1", b"+"]) # False (incomplete)
Source code in genlm/control/sampler/unit.py
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | |
__call__(unit_context, subunit_buffer)
Check if buffer forms a complete syntactic unit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unit_context
|
list
|
Previous completed units (ignored) |
required |
subunit_buffer
|
list
|
Current sequence of subunits to check |
required |
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if buffer parses successfully and meets criteria |
Source code in genlm/control/sampler/unit.py
get_parse_tree(text)
Get the parse tree for a given text.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
String to parse |
required |
Returns:
| Type | Description |
|---|---|
Optional[Any]
|
Lark Tree object or None if parsing fails |