File size: 12,991 Bytes
68a4c53 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 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 | """End-to-end build pipeline: corpus β frequency β savings selection β PUA β BPE.
Architecture (post-refit):
Corpus shards
β
βΌ
Frequency counter ββββββββββββββββββββββββββ
β β
βΌ βΌ
PUA candidate selection (savings-based) cl100k baseline
β
βΌ
PUAMapping (word β PUA char)
β
βΌ
PUA-substituted text stream βββΊ BpeTrainer βββΊ tokenizer.json (raw)
β
βΌ
merge_policy audit + invariants
β
βΌ
tokenizer.json (final)
The substitution stream is the load-bearing fix: it lets the BPE trainer
actually see PUA chars in the symbol stream so merges like
``[Δ ][β¦returnβ§]`` (whitespace-prefix + PUA) can be learned. The previous
implementation registered PUA chars as `AddedToken`s only after training,
which made all whitespace+PUA merges impossible.
We still register PUA chars as `AddedToken`s as a *safety net* β any PUA
char that BPE didn't see often enough to merge is still guaranteed an
atomic vocab id.
"""
from __future__ import annotations
import json
import random
import time
import warnings
from collections.abc import Iterable, Iterator
from dataclasses import asdict
from pathlib import Path
from typing import Any
from tokenizers import AddedToken, Tokenizer, decoders, models, trainers
from tokenizers.pre_tokenizers import ByteLevel
from .baseline import BaselineTokenizer, get_default_baseline
from .config import CUTEConfig
from .corpus import ingest_corpus, iter_shard_texts
from .frequency import count_frequencies
from .manifest import (
hash_corpus_shards,
hash_vocab,
make_manifest,
)
from .merge_policy import audit_and_filter_tokenizer_file
from .pretokenizer import pretokenize_to_string
from .pua import PUAMapping, assign_pua_mapping
from .selection import (
coverage_of,
select_by_coverage,
select_by_savings,
)
# ---------------------------------------------------------------------------
# Mapping persistence
# ---------------------------------------------------------------------------
def save_mapping(mapping: PUAMapping, path: Path) -> None:
"""Write the mapping as JSON. Word β PUA codepoint integer for clarity."""
payload = {
"version": 1,
"size": mapping.size,
"skipped_codepoints": list(mapping.skipped_codepoints),
"word_to_codepoint": {w: ord(c) for w, c in mapping.word_to_pua.items()},
}
path.write_text(
json.dumps(payload, ensure_ascii=False, indent=2),
encoding="utf-8",
)
def load_mapping(path: Path) -> PUAMapping:
"""Inverse of `save_mapping`."""
payload = json.loads(path.read_text(encoding="utf-8"))
word_to_pua = {w: chr(cp) for w, cp in payload["word_to_codepoint"].items()}
pua_to_word = {c: w for w, c in word_to_pua.items()}
return PUAMapping(
word_to_pua=word_to_pua,
pua_to_word=pua_to_word,
skipped_codepoints=tuple(payload.get("skipped_codepoints", [])),
)
# ---------------------------------------------------------------------------
# Training-stream substitution
# ---------------------------------------------------------------------------
def _substituted_iter(
texts: Iterable[str],
mapping: PUAMapping,
) -> Iterator[str]:
"""Yield each text with PUA substitution applied. Empty mapping is a no-op."""
if not mapping.word_to_pua:
yield from texts
return
for text in texts:
yield pretokenize_to_string(text, mapping)
# ---------------------------------------------------------------------------
# BPE training
# ---------------------------------------------------------------------------
def _build_bpe_tokenizer() -> Tokenizer:
"""Construct an untrained Tokenizer with vanilla ByteLevel pre-tokenizer."""
tok = Tokenizer(models.BPE(unk_token=None))
tok.pre_tokenizer = ByteLevel(add_prefix_space=False, use_regex=True, trim_offsets=True)
tok.decoder = decoders.ByteLevel()
return tok
def _train_bpe(
tokenizer: Tokenizer,
shards_dir: Path,
mapping: PUAMapping,
config: CUTEConfig,
) -> None:
"""Run BPE training on the *PUA-substituted* shard stream, then add any
PUA chars that BPE didn't pick up as `AddedToken`s for safety.
Vocab budget split:
bpe_vocab_size = config.vocab_size - len(mapping)
bpe_merge_budget = bpe_vocab_size - len(special_tokens) - 256
"""
bpe_vocab_size = config.vocab_size - len(mapping.word_to_pua)
bpe_merge_budget = bpe_vocab_size - len(config.special_tokens) - 256
if bpe_merge_budget < config.min_bpe_budget:
raise ValueError(
f"BPE merge budget too small: {bpe_merge_budget} < {config.min_bpe_budget}. "
f"Reduce pua_budget (currently {config.pua_budget}) or raise "
f"vocab_size (currently {config.vocab_size})."
)
trainer = trainers.BpeTrainer(
vocab_size=bpe_vocab_size,
special_tokens=list(config.special_tokens),
initial_alphabet=list(ByteLevel.alphabet()),
min_frequency=config.min_frequency,
show_progress=False,
)
# THE FIX: substitute PUAs into the training stream so BPE actually
# sees them. Without this, ByteLevel pre-tokenizes raw UTF-8 bytes
# which never contain PUA chars, and no whitespace+PUA merge can
# ever be learned.
substituted = _substituted_iter(iter_shard_texts(shards_dir), mapping)
tokenizer.train_from_iterator(substituted, trainer=trainer)
# Safety net: any PUA char that wasn't picked up as a vocab entry by
# BPE training (unlikely but possible for very rare ones) is registered
# explicitly so it has an atomic id. Already-known chars are no-ops.
existing_vocab = tokenizer.get_vocab()
pua_added = [
AddedToken(
ch,
single_word=False,
lstrip=False,
rstrip=False,
normalized=False,
special=False,
)
for ch in mapping.pua_chars
if ch not in existing_vocab
]
if pua_added:
tokenizer.add_tokens(pua_added)
# ---------------------------------------------------------------------------
# Public entrypoint
# ---------------------------------------------------------------------------
def build_cute(
corpus_dir: Path,
output_dir: Path,
config: CUTEConfig | None = None,
*,
baseline: BaselineTokenizer | None = None,
) -> Path:
"""Run the full CUTE build. Returns the path to the manifest file.
Idempotent: re-running with the same inputs reproduces the same artifacts.
"""
if config is None:
config = CUTEConfig()
random.seed(config.seed)
output_dir = Path(output_dir)
output_dir.mkdir(parents=True, exist_ok=True)
timing: dict[str, float] = {}
# Phase 1 β ingest corpus
t0 = time.perf_counter()
ingest_stats = ingest_corpus(
corpus_dir=Path(corpus_dir),
out_dir=output_dir,
extensions=config.extensions,
shard_size_bytes=config.shard_size_bytes,
enable_secret_scrub=config.enable_secret_scrub,
enable_license_filter=config.enable_license_filter,
license_allowlist=config.license_allowlist,
)
timing["ingest"] = time.perf_counter() - t0
shards_dir = output_dir / "shards"
# Phase 2 β frequency analysis
t0 = time.perf_counter()
freq = count_frequencies(
shards_dir=shards_dir,
boost_weight=config.boost_weight,
max_token_len=config.max_token_len,
workers=config.workers,
)
timing["frequency"] = time.perf_counter() - t0
if not freq:
raise RuntimeError(
f"Corpus at {corpus_dir} produced zero tokens. "
"Check that the directory contains files matching config.extensions."
)
# Phase 3 β selection + PUA assignment
t0 = time.perf_counter()
if config.use_savings_selection:
if baseline is None:
baseline = get_default_baseline()
selected = select_by_savings(
freq,
baseline,
vocab_budget=config.pua_budget,
max_len=config.max_token_len,
allow_supplementary_pua=config.allow_supplementary_pua,
)
else:
warnings.warn(
"use_savings_selection=False β falling back to legacy frequency-based "
"selection. Production builds should use savings-based scoring.",
stacklevel=2,
)
selected = select_by_coverage(
freq,
coverage_target=config.coverage_target,
max_len=config.max_token_len,
max_tokens=config.pua_budget if config.pua_budget > 0 else None,
)
coverage = coverage_of(freq, selected)
mapping = assign_pua_mapping(
selected,
corpus_pua_codepoints=ingest_stats.pua_codepoints_in_corpus,
skip_bmp=config.pua_skip_bmp,
)
save_mapping(mapping, output_dir / "cute_mapping.json")
timing["selection_and_pua"] = time.perf_counter() - t0
# Phase 4 β BPE training (on PUA-substituted stream)
t0 = time.perf_counter()
tok = _build_bpe_tokenizer()
_train_bpe(tok, shards_dir, mapping, config)
tokenizer_path = output_dir / "tokenizer.json"
tok.save(str(tokenizer_path))
timing["bpe_training"] = time.perf_counter() - t0
# Phase 4b β invariant audit + optional PUA-PUA merge filter
t0 = time.perf_counter()
audit_stats = audit_and_filter_tokenizer_file(
tokenizer_path,
mapping,
strict=config.strict_pua_atomicity,
)
timing["merge_audit"] = time.perf_counter() - t0
# Phase 5 β tokenizer_config.json (so HF auto_map works)
_write_tokenizer_config(output_dir, config)
# Phase 6 β manifest
t0 = time.perf_counter()
# Re-load vocab after potential rewrite.
final_tok = Tokenizer.from_file(str(tokenizer_path))
vocab = final_tok.get_vocab()
baseline_name = baseline.name if baseline is not None else "n/a"
manifest = make_manifest(
config=config.to_dict(),
corpus_hash=hash_corpus_shards(shards_dir),
vocab_hash=hash_vocab(vocab),
pua_mapping_size=mapping.size,
pua_codepoints_in_corpus=sorted(ingest_stats.pua_codepoints_in_corpus),
coverage_achieved=coverage,
timing_seconds=timing,
ingest_stats={
k: (sorted(v) if isinstance(v, frozenset) else v)
for k, v in asdict(ingest_stats).items()
},
)
# Stash baseline + audit info on the manifest config dict so it's
# captured without growing the BuildManifest dataclass surface.
manifest.config = {
**manifest.config,
"baseline_name": baseline_name,
"merge_audit": audit_stats,
}
manifest_path = output_dir / "build_manifest.json"
manifest.write(manifest_path)
timing["manifest"] = time.perf_counter() - t0
return manifest_path
def _write_tokenizer_config(output_dir: Path, config: CUTEConfig) -> None:
"""Write `tokenizer_config.json` so `AutoTokenizer.from_pretrained` works.
We deliberately do NOT set `bos_token` / `eos_token` / `pad_token` /
`unk_token` because the conventional defaults (`<s>`, `</s>`, `<pad>`,
`<unk>`) collide with natural text in code corpora β making them
special tokens causes silent roundtrip loss whenever those substrings
appear in a real file. Users who need padding / sequence boundaries
should pick from the pipe-style markers (`<|endoftext|>`, etc.) which
are guaranteed not to appear in real code.
"""
cfg: dict[str, Any] = {
"tokenizer_class": "CUTETokenizerFast",
"auto_map": {
"AutoTokenizer": [None, "cute_tokenizer.tokenizer.CUTETokenizerFast"],
},
"model_max_length": 1_000_000,
"padding_side": "right",
"truncation_side": "right",
# Use <|endoftext|> as the sequence boundary if user enables special tokens.
"eos_token": "<|endoftext|>",
}
(output_dir / "tokenizer_config.json").write_text(
json.dumps(cfg, indent=2),
encoding="utf-8",
)
__all__ = ["build_cute", "load_mapping", "save_mapping"]
|