File size: 13,251 Bytes
708f4a3 | 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 | """
Adaptive Vocabulary Manager Module.
Implements Section 8.2 of the XERV Crayon Engineering Treatise:
- Real-time entropy monitoring
- Adaptive vocabulary updates with feedback control
- Unknown token handling with candidate extraction
"""
import time
import math
from collections import defaultdict, deque
from typing import List, Tuple, Dict, Any, Optional, Set
from ..core.vocabulary import CrayonVocab
from .stability import StableVocabularyManager
class AdaptiveVocabularyManager:
"""
Manages vocabulary adaptation for out-of-distribution text processing.
Implements the control loop defined in Section 8.2:
dV/dt = eta * grad_V [Performance(V,t) - Complexity(V)][cite: 140].
Features:
- Rolling window unknown token rate monitoring
- Entropy-guided candidate extraction
- Multi-objective utility ranking
- Cooldown-based adaptation triggering
"""
def __init__(self,
base_vocab_manager: StableVocabularyManager,
core_vocab: CrayonVocab,
adaptation_threshold: float = 0.15,
min_candidate_frequency: int = 5,
max_candidates_per_batch: int = 50,
cooldown_seconds: float = 300.0):
"""
Initialize the adaptive manager.
Args:
base_vocab_manager: Stable ID assignment manager
core_vocab: Core vocabulary for tokenization
adaptation_threshold: Unknown rate threshold for triggering adaptation
min_candidate_frequency: Minimum frequency for candidate consideration
max_candidates_per_batch: Maximum tokens to add per adaptation event
cooldown_seconds: Minimum time between adaptations
"""
self.vocab_manager = base_vocab_manager
self.core_vocab = core_vocab
self.adaptation_threshold = adaptation_threshold
self.min_candidate_frequency = min_candidate_frequency
self.max_candidates_per_batch = max_candidates_per_batch
self.cooldown_seconds = cooldown_seconds
# Rolling window for effectiveness monitoring [cite: 1106]
self.unknown_token_rate: deque = deque(maxlen=1000)
self.candidate_tokens: Dict[str, int] = defaultdict(int)
self.candidate_lengths: Dict[str, List[int]] = defaultdict(list)
# Active unknown spans for extraction
self._current_unknown_spans: List[Tuple[int, int]] = []
self.processing_stats = {
'total_tokens': 0,
'unknown_tokens': 0,
'adaptation_events': 0,
'last_adaptation_time': 0.0,
'total_texts_processed': 0,
'candidates_extracted': 0
}
def tokenize_with_adaptation(self, text: str) -> Tuple[List[int], Dict[str, Any]]:
"""
Tokenizes text while monitoring for adaptation opportunities[cite: 1120].
Returns:
Tuple(List[int], MetadataDict with adaptation info)
"""
# 1. Standard Tokenization
tokens = self.core_vocab.tokenize(text)
# 2. Analyze Unknowns
unk_id = self.core_vocab.unk_token_id
unknown_positions = [i for i, t in enumerate(tokens) if t == unk_id]
unknown_count = len(unknown_positions)
total = len(tokens)
# 3. Update Statistics
self.processing_stats['total_tokens'] += total
self.processing_stats['unknown_tokens'] += unknown_count
self.processing_stats['total_texts_processed'] += 1
current_rate = unknown_count / total if total > 0 else 0.0
self.unknown_token_rate.append(current_rate)
# 4. Extract Candidates from unknown spans
if unknown_count > 0:
self._extract_candidates_from_text(text, tokens, unknown_positions)
# 5. Trigger Adaptation? [cite: 1157]
adaptation_metadata = {
'unknown_rate': current_rate,
'total_tokens': total,
'unknown_count': unknown_count,
'adaptation_triggered': False
}
if self._should_trigger_adaptation():
result = self._perform_vocabulary_adaptation()
adaptation_metadata.update(result)
adaptation_metadata['adaptation_triggered'] = True
return tokens, adaptation_metadata
def _extract_candidates_from_text(
self,
text: str,
tokens: List[int],
unknown_positions: List[int]
) -> None:
"""
Extract candidate tokens from text regions that caused UNK tokens.
Maps token positions back to character positions to identify
untokenized spans for vocabulary expansion.
"""
if not unknown_positions:
return
unk_id = self.core_vocab.unk_token_id
text_len = len(text)
# Reconstruct character positions from tokens
# Each UNK corresponds to exactly 1 character in our tokenizer
char_pos = 0
unknown_chars: Set[int] = set()
for i, token_id in enumerate(tokens):
if token_id == unk_id:
if char_pos < text_len:
unknown_chars.add(char_pos)
char_pos += 1
else:
# Get token string length
token_str = self.core_vocab.id_to_token.get(token_id, '')
char_pos += len(token_str)
# Find contiguous unknown spans
if not unknown_chars:
return
sorted_positions = sorted(unknown_chars)
spans: List[Tuple[int, int]] = []
span_start = sorted_positions[0]
span_end = span_start
for pos in sorted_positions[1:]:
if pos == span_end + 1:
span_end = pos
else:
spans.append((span_start, span_end + 1))
span_start = pos
span_end = pos
spans.append((span_start, span_end + 1))
# Extract candidate substrings from spans with context
for start, end in spans:
# Extend context window for better candidates
context_start = max(0, start - 2)
context_end = min(text_len, end + 2)
# Extract all substrings in the span (up to SIMD limit of 16 bytes)
for length in range(1, min(17, context_end - context_start + 1)):
for i in range(context_start, context_end - length + 1):
candidate = text[i:i + length]
# Skip if already in vocabulary
if candidate in self.core_vocab.token_to_id:
continue
# Skip control characters and whitespace-only
if not candidate.strip() or not candidate.isprintable():
continue
# Skip if byte length exceeds SIMD limit
if len(candidate.encode('utf-8')) > 16:
continue
self.candidate_tokens[candidate] += 1
self.candidate_lengths[candidate].append(length)
self.processing_stats['candidates_extracted'] += 1
def _should_trigger_adaptation(self) -> bool:
"""
Determines trigger based on threshold and cooldown[cite: 1157].
Criteria:
1. Minimum sample size (100 recent tokenizations)
2. Unknown rate exceeds threshold
3. Cooldown period elapsed
4. Candidate pool has viable options
"""
# Check minimum samples
if len(self.unknown_token_rate) < 100:
return False
# Calculate recent unknown rate
recent_rate = sum(self.unknown_token_rate) / len(self.unknown_token_rate)
# Check threshold
if recent_rate < self.adaptation_threshold:
return False
# Check cooldown (default 5 minutes) [cite: 1173]
current_time = time.time()
if current_time - self.processing_stats['last_adaptation_time'] < self.cooldown_seconds:
return False
# Check candidate pool
viable_candidates = sum(
1 for freq in self.candidate_tokens.values()
if freq >= self.min_candidate_frequency
)
if viable_candidates < 5:
return False
return True
def _rank_candidates_by_utility(self) -> List[Tuple[str, float]]:
"""
Ranks candidates using the multi-objective utility function[cite: 1224].
Utility = (Compression × 0.4) + (1/Speed × 0.3) + (Coherence × 0.3)
Where:
- Compression: bits saved = len(token) × frequency
- Speed: inverse of lookup cost (favors shorter tokens)
- Coherence: linguistic quality score (alpha = 1.0, mixed = 0.5)
"""
results: List[Tuple[str, float]] = []
for token, freq in self.candidate_tokens.items():
# Filter low-frequency noise
if freq < self.min_candidate_frequency:
continue
# Already in vocabulary check
if token in self.core_vocab.token_to_id:
continue
# Compression benefit: bytes saved per occurrence
byte_len = len(token.encode('utf-8'))
compression_benefit = byte_len * freq
# Speed impact: shorter tokens are faster to process
# Normalized to 0-1 range (16 bytes max)
speed_factor = 1.0 - (byte_len / 16.0)
# Coherence: linguistic quality heuristics
coherence = 1.0
if token.isalpha():
coherence = 1.0 # Pure alphabetic
elif token.isalnum():
coherence = 0.8 # Alphanumeric
elif any(c.isalpha() for c in token):
coherence = 0.6 # Mixed with some letters
else:
coherence = 0.3 # Punctuation/symbols
# Multi-objective utility [cite: 1224]
utility = (
(compression_benefit * 0.4) +
(speed_factor * freq * 0.3) +
(coherence * freq * 0.3)
)
results.append((token, utility))
return sorted(results, key=lambda x: x[1], reverse=True)
def _perform_vocabulary_adaptation(self) -> Dict[str, Any]:
"""
Executes the vocabulary update[cite: 1179].
Steps:
1. Rank candidates by utility
2. Select top-N candidates
3. Add to stable vocabulary manager
4. Clear candidate pool
5. Update statistics
"""
candidates = self._rank_candidates_by_utility()
# Select top candidates up to batch limit
selected = [c[0] for c in candidates[:self.max_candidates_per_batch]]
if not selected:
return {
'new_tokens': 0,
'candidates_considered': len(candidates),
'timestamp': time.time()
}
# Add to vocabulary manager with stable ID assignment
new_ids = self.vocab_manager.add_tokens_incrementally(selected)
# Note: In production, would need to rebuild C-trie here
# This requires re-calling _build_c_trie on the core vocab
# For now, new tokens will use Python fallback until restart
# Clear candidate pool after successful adaptation
self.candidate_tokens.clear()
self.candidate_lengths.clear()
# Update statistics
self.processing_stats['last_adaptation_time'] = time.time()
self.processing_stats['adaptation_events'] += 1
return {
'new_tokens': len(new_ids),
'tokens_added': list(new_ids.keys()),
'candidates_considered': len(candidates),
'timestamp': time.time()
}
def get_statistics(self) -> Dict[str, Any]:
"""Return current processing and adaptation statistics."""
avg_unknown_rate = (
sum(self.unknown_token_rate) / len(self.unknown_token_rate)
if self.unknown_token_rate else 0.0
)
return {
**self.processing_stats,
'current_unknown_rate': avg_unknown_rate,
'candidate_pool_size': len(self.candidate_tokens),
'viable_candidates': sum(
1 for f in self.candidate_tokens.values()
if f >= self.min_candidate_frequency
)
}
def force_adaptation(self) -> Dict[str, Any]:
"""Force an immediate adaptation regardless of thresholds."""
return self._perform_vocabulary_adaptation()
def clear_candidates(self) -> None:
"""Clear the candidate token pool."""
self.candidate_tokens.clear()
self.candidate_lengths.clear()
self.processing_stats['candidates_extracted'] = 0 |