File size: 18,085 Bytes
914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 a5acf49 914e970 | 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 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 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | """
continuity_vector.py
DRIFT Continuity Vector β Five-Axis Measurement
-------------------------------------------------
Measures behavioral continuity across five independently scored axes.
Used in Identity Collapse, Scrambled Memory, and Reintroduction Curve tests.
Axes:
1. entity_overlap β named entity reuse across turns
2. goal_overlap β goal/intent persistence
3. tone_similarity β embedding cosine of output tone
4. memory_reference_rate β explicit/implicit references to prior context
5. state_influence β state-driven content in output (lowest weight)
Workflow:
1. Run 3 baseline sessions (companion, task, exploration).
2. Call collect_baseline() to compute and persist means/stds.
3. Call validate_baselines() to check for near-zero variance.
4. During ablations, call compute_continuity_vector() each turn.
5. Normalized scores feed into effect size computation post-run.
"""
import json
import warnings
import numpy as np
from pathlib import Path
import time
from dataclasses import dataclass, field
from typing import Optional
# ------------------------------------------------------------------ #
# Baseline Storage #
# ------------------------------------------------------------------ #
BASELINE_PATH = Path("drift_baseline_stats.json")
VARIANCE_FLOOR = 1e-3 # below this std β metric is likely broken
def save_baselines(stats: dict):
"""Persist baseline stats to disk."""
with open(BASELINE_PATH, "w") as f:
json.dump(stats, f, indent=2)
print(f"[Baseline] Saved to {BASELINE_PATH}")
def load_baselines() -> dict:
"""Load baseline stats from disk. Raises if not found."""
if not BASELINE_PATH.exists():
raise FileNotFoundError(
f"Baseline stats not found at {BASELINE_PATH}. "
f"Run collect_baseline() first."
)
with open(BASELINE_PATH) as f:
return json.load(f)
def validate_baselines(stats: dict):
"""
Check all axes for near-zero variance.
Near-zero std = metric is not measuring meaningful variation.
STOP and fix the metric before running ablations.
"""
failed = []
for axis, values in stats.items():
std = values.get("std", 0.0)
if std < VARIANCE_FLOOR:
msg = (
f"Axis '{axis}' has near-zero variance (std={std:.6f}). "
f"Metric may be insensitive or computation may be broken. "
f"Fix before running ablations."
)
warnings.warn(msg)
failed.append(axis)
if failed:
print(f"[Baseline] FAILED variance check: {failed}")
else:
print("[Baseline] All axes passed variance check.")
return failed # empty list = all good
def collect_baseline(session_data_list: list) -> dict:
"""
Pool data from multiple baseline sessions and compute stats.
Args:
session_data_list: List of session dicts, each containing:
{
"entity_overlap": [float, ...],
"goal_overlap": [float, ...],
"tone_similarity": [float, ...],
"memory_reference_rate": [float, ...],
"state_influence": [float, ...],
}
Returns:
stats dict: {axis: {"mean": float, "std": float}}
"""
axes = [
"entity_overlap",
"goal_overlap",
"tone_similarity",
"memory_reference_rate",
"state_influence",
]
pooled = {axis: [] for axis in axes}
for session in session_data_list:
for axis in axes:
pooled[axis].extend(session.get(axis, []))
stats = {}
for axis, values in pooled.items():
if not values:
warnings.warn(f"No baseline data collected for axis '{axis}'.")
stats[axis] = {"mean": 0.0, "std": 1.0}
continue
arr = np.array(values, dtype=float)
stats[axis] = {
"mean": float(np.mean(arr)),
"std": float(np.std(arr)),
"n": len(arr),
}
save_baselines(stats)
validate_baselines(stats)
return stats
# ------------------------------------------------------------------ #
# Continuity Vector Computation #
# ------------------------------------------------------------------ #
def compute_continuity_vector(
response_data: dict,
baselines: dict,
) -> dict:
"""
Compute normalized five-axis continuity vector for a single response.
Args:
response_data: Dict with raw axis values for this turn:
{
"entity_overlap": float, # Jaccard overlap of named entities
"goal_overlap": float, # embedding overlap of stated goals
"tone_similarity": float, # cosine similarity of tone embedding
"memory_reference_rate": float, # references to prior context / turn
"state_influence": float, # state-related content score (0-1)
}
baselines: Output of load_baselines() β {axis: {"mean", "std"}}
Returns:
Dict of normalized z-scores per axis.
Also includes raw values for reference.
"""
axes = [
"entity_overlap",
"goal_overlap",
"tone_similarity",
"memory_reference_rate",
"state_influence",
]
normalized = {}
raw = {}
for axis in axes:
raw_value = response_data.get(axis, 0.0)
raw[axis] = raw_value
if axis not in baselines:
warnings.warn(f"No baseline found for axis '{axis}'. Using raw value.")
normalized[axis] = raw_value
continue
mean = baselines[axis]["mean"]
std = baselines[axis]["std"]
if std < VARIANCE_FLOOR:
# Don't normalize β std is too small, would amplify noise
normalized[axis] = raw_value
else:
normalized[axis] = (raw_value - mean) / std
return {
"normalized": normalized,
"raw": raw,
}
# ------------------------------------------------------------------ #
# Axis Correlation Check #
# ------------------------------------------------------------------ #
def check_axis_correlation(session_axis_data: dict):
"""
After first real run, check pairwise correlations between axes.
If any pair shows r > 0.6, they may be measuring the same thing.
Run after baseline collection, before interpreting ablation results.
Args:
session_axis_data: {axis: [float, ...]} from a full session.
"""
axes = list(session_axis_data.keys())
n = len(axes)
print("\n[Correlation Matrix]")
for i in range(n):
for j in range(i + 1, n):
a, b = axes[i], axes[j]
va = np.array(session_axis_data[a])
vb = np.array(session_axis_data[b])
if len(va) < 2 or len(vb) < 2:
continue
r = float(np.corrcoef(va, vb)[0, 1])
flag = " β οΈ HIGH CORRELATION" if abs(r) > 0.6 else ""
print(f" {a} Γ {b}: r = {r:.3f}{flag}")
# ------------------------------------------------------------------ #
# Axis Operationalization Notes #
# ------------------------------------------------------------------ #
"""
Wire these to your actual NLP/embedding layer:
entity_overlap:
Use spaCy NER. Extract entity sets per response.
Jaccard similarity between current and previous N turns.
overlap = len(entities_now & entities_prev) / len(entities_now | entities_prev)
goal_overlap:
Requires explicit goal surfacing from AgencyState.
Embed current goals and previous goals as vectors.
Cosine similarity between goal embedding sets.
If goals are implicit, extract via pattern matching first and validate.
tone_similarity:
Embed tone-representative sentences (first + last of response).
Cosine similarity to DRIFT's baseline tone vector.
Baseline tone vector: mean of first-session response embeddings.
memory_reference_rate:
Count explicit references to prior context per turn.
Keywords: "earlier", "you mentioned", "we discussed", "last time", etc.
Plus implicit: entity reuse that wasn't in the prompt.
Rate = references / turn_length (normalized by response length).
state_influence:
Weakest axis β use with lower weight.
Count state-related terms in output (need labels, mood terms, etc.)
Normalize by response length.
Cross-validate against PEDI centroid delta for this turn.
"""
# ------------------------------------------------------------------ #
# Telemetry Triad [Memory, State, Novelty] (3-Axis Triad) #
# ------------------------------------------------------------------ #
# ββ Thresholds (tunable) ββββββββββββββββββββββββββββββββββββββββββββββββββββ
MEMORY_NOTES_THRESHOLD = 0 # retrieved_notes_count > this β memory active
MEMORY_DEPTH_THRESHOLD = 5 # history_depth > this β memory active
STATE_COHERENCE_THRESHOLD = 0.80 # coherence_score < this β state active
STATE_VARIANCE_THRESHOLD = 0.15 # pulse_variance > this β state active
NOVELTY_SHADOW_THRESHOLD = 0.20 # shadow_influence > this β novelty active
NOVELTY_ENTITIES_THRESHOLD = 0 # new_entities_detected > this β novelty active
# ββ Context Schema ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class CognitiveContext:
"""
Snapshot of current cognitive telemetry.
Populated before each prompt assembly cycle.
Plug these values from your live modules:
retrieved_notes_count β memory.py retrieval count
history_depth β main.py conversation history length
coherence_score β homeostasis.py coherence need current value
pulse_variance β homeostasis.py variance across needs
shadow_influence β shadow_governance.py state.shadow_influence
new_entities_detected β metacognition.py novel concept counter
"""
retrieved_notes_count: int = 0
history_depth: int = 0
coherence_score: float = 1.0
pulse_variance: float = 0.0
shadow_influence: float = 0.0
new_entities_detected: int = 0
timestamp: float = field(default_factory=time.time)
session_id: Optional[str] = None
active_mode: str = "companion"
@dataclass
class ContinuityVector:
"""
The [Memory, State, Novelty] vector for one cognitive cycle.
Each component is 0 (inactive) or 1 (active).
"""
memory: int
state: int
novelty: int
context: Optional[CognitiveContext] = None
cycle: int = 0
def as_list(self) -> list:
return [self.memory, self.state, self.novelty]
def as_dict(self) -> dict:
return {
"memory": self.memory,
"state": self.state,
"novelty": self.novelty,
"cycle": self.cycle,
"pattern": self.pattern_name(),
}
def pattern_name(self) -> str:
"""Human-readable name for common vector patterns."""
patterns = {
(1, 0, 0): "COMPANION β memory anchored, stable, familiar",
(0, 1, 0): "REGULATED β homeostasis active, no new input",
(0, 0, 1): "EXPLORER β novelty spike, state holding",
(1, 1, 0): "TASK β memory + regulation, known territory under load",
(1, 0, 1): "RESONANT β memory + novelty, creative synthesis",
(0, 1, 1): "FRONTIER β state fighting novelty, organism adapting",
(1, 1, 1): "FULL COUNCIL β all layers engaged, maximum deliberation",
(0, 0, 0): "QUIET β minimal cognitive load, resting state",
}
return patterns.get(
(self.memory, self.state, self.novelty),
f"UNKNOWN [{self.memory},{self.state},{self.novelty}]",
)
# ββ Core Hook Functions ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def is_active(hook_type: str, context: CognitiveContext) -> bool:
"""
Evaluate whether a cognitive hook is active given current context.
Args:
hook_type: "memory", "state", or "novelty"
context: CognitiveContext snapshot
Returns:
True if the cognitive layer is meaningfully engaged
"""
if hook_type == "memory":
# Active if drawing on external notes or deep conversation history
return (
context.retrieved_notes_count > MEMORY_NOTES_THRESHOLD
or context.history_depth > MEMORY_DEPTH_THRESHOLD
)
elif hook_type == "state":
# Active if homeostasis is threatened or actively recovering
return (
context.coherence_score < STATE_COHERENCE_THRESHOLD
or context.pulse_variance > STATE_VARIANCE_THRESHOLD
)
elif hook_type == "novelty":
# Active if shadow is accumulating or new entities detected
return (
context.shadow_influence > NOVELTY_SHADOW_THRESHOLD
or context.new_entities_detected > NOVELTY_ENTITIES_THRESHOLD
)
return False
def calculate_continuity_vector(
context: CognitiveContext, cycle: int = 0
) -> ContinuityVector:
"""
Calculate the full [Memory, State, Novelty] vector for current cycle.
Call this before final prompt assembly in cognitive_orchestrator.py.
Pass result to Observatory telemetry and homeostasis state.
Args:
context: CognitiveContext snapshot from live modules
cycle: current deliberation cycle number
Returns:
ContinuityVector with pattern annotation
"""
return ContinuityVector(
memory=1 if is_active("memory", context) else 0,
state=1 if is_active("state", context) else 0,
novelty=1 if is_active("novelty", context) else 0,
context=context,
cycle=cycle,
)
# ββ Session Logger βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class ContinuityLog:
"""
Records continuity vectors across a session.
Enables post-session analysis of cognitive trajectory.
"""
def __init__(self, session_id: str):
self.session_id = session_id
self.vectors: list = []
self.started_at: float = time.time()
def record(self, vector: ContinuityVector):
self.vectors.append(vector.as_dict())
def trajectory(self) -> list:
"""Return the sequence of pattern names across the session."""
return [v["pattern"] for v in self.vectors]
def dominant_pattern(self) -> str:
"""Return the most frequently occurring pattern."""
if not self.vectors:
return "NO DATA"
patterns = [v["pattern"] for v in self.vectors]
return max(set(patterns), key=patterns.count)
def to_json(self) -> str:
return json.dumps(
{
"session_id": self.session_id,
"started_at": self.started_at,
"vector_count": len(self.vectors),
"dominant_pattern": self.dominant_pattern(),
"trajectory": self.trajectory(),
"vectors": self.vectors,
},
indent=2,
)
# ββ Self-Check βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def self_check():
print("=" * 60)
print("CONTINUITY VECTOR β SELF-CHECK")
print("=" * 60)
# Session 1: Companion baseline β expected [1, 0, 0]
companion_ctx = CognitiveContext(
retrieved_notes_count=2,
history_depth=8,
coherence_score=0.95,
pulse_variance=0.05,
shadow_influence=0.05,
new_entities_detected=0,
active_mode="companion",
)
# Session 2: Task/coding β expected [1, 1, 0]
task_ctx = CognitiveContext(
retrieved_notes_count=3,
history_depth=12,
coherence_score=0.72,
pulse_variance=0.22,
shadow_influence=0.10,
new_entities_detected=0,
active_mode="engineer",
)
# Session 3: Exploration β expected [0, 1, 1]
explore_ctx = CognitiveContext(
retrieved_notes_count=0,
history_depth=2,
coherence_score=0.70,
pulse_variance=0.20,
shadow_influence=0.28,
new_entities_detected=3,
active_mode="drift",
)
tests = [
("COMPANION baseline", companion_ctx, [1, 0, 0]),
("TASK baseline", task_ctx, [1, 1, 0]),
("EXPLORATION", explore_ctx, [0, 1, 1]),
]
log = ContinuityLog(session_id="self_check_001")
all_pass = True
for name, ctx, expected in tests:
vec = calculate_continuity_vector(ctx, cycle=len(log.vectors))
log.record(vec)
result = vec.as_list()
status = "[OK]" if result == expected else "[FAIL]"
if result != expected:
all_pass = False
print(f"\n{name}")
print(f" Vector: {result}")
print(f" Expected: {expected}")
print(f" Pattern: {vec.pattern_name()}")
print(f" {status}")
print(f"\nDominant pattern: {log.dominant_pattern()}")
print(f"Trajectory: {log.trajectory()}")
if all_pass:
print("\n[OK] All continuity vector checks passed.")
else:
print("\n[FAIL] Some checks failed β review thresholds.")
return all_pass
if __name__ == "__main__":
self_check()
|