File size: 16,544 Bytes
76e4ab1 | 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 | """KAT TutoringRSSM β Standalone Architecture for Inference.
This file contains the complete model architecture for the KAT Tutoring World Model,
a DreamerV3-style Recurrent State-Space Model (RSSM) adapted for tutoring domains.
It can be used to load pretrained checkpoints without the full KAT codebase.
Heritage: Abigail core/world_model.py WorldModel, adapted for KAT's
tutoring-specific dimensions and loss functions. Integrates VL-JEPA
Exponential Moving Average (EMA) target encoding for self-supervised
representation learning.
Architecture Overview:
βββββββββββββββ βββββββββββββββ ββββββββββββββββ
β Observation ββββββΆβ RSSM Core ββββββΆβ Predictions β
β Encoder β β GRU + z β β obs/rew/doneβ
βββββββββββββββ βββββββββββββββ ββββββββββββββββ
β β²
β βββββββ΄ββββββ
β β Action β
β β Embedding β
β βββββββββββββ
βΌ
βββββββββββββββ
β EMA Target β
β Encoder β
βββββββββββββββ
Author: Preston Mills / QRI (Qualia Research Initiative)
License: Apache-2.0
"""
from __future__ import annotations
import json
import logging
from dataclasses import dataclass, field, asdict
from typing import Any
import torch
import torch.nn as nn
import torch.nn.functional as F
from torch import Tensor
from torch.distributions import Normal
logger = logging.getLogger(__name__)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CONFIGURATION
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@dataclass
class TutoringWorldModelConfig:
"""Configuration for the Tutoring RSSM world model.
Heritage: Maps to Abigail's WorldModelConfig with tutoring-specific defaults.
Observation space (20-dim):
- Mastery estimates per topic (8 dims)
- Misconception indicators (4 dims)
- Engagement signals (4 dims)
- Session context (4 dims)
Action space (8 discrete actions):
0: clarify, 1: hint_l1, 2: hint_l2, 3: hint_l3,
4: encourage, 5: redirect, 6: assess, 7: summarize
"""
obs_dim: int = 20
action_dim: int = 8
latent_dim: int = 128
hidden_dim: int = 512
encoder_hidden: int = 256
decoder_hidden: int = 256
dropout: float = 0.1
# EMA target encoder (VL-JEPA heritage)
ema_momentum: float = 0.996
# Multi-step imagination (DreamerV3 heritage)
rollout_horizon: int = 5
rollout_weight: float = 0.5
rollout_discount: float = 0.95
@classmethod
def from_json(cls, path: str) -> "TutoringWorldModelConfig":
"""Load config from a JSON file."""
with open(path) as f:
data = json.load(f)
# Extract config dict if nested
config_data = data.get("config", data)
# Filter to only known fields
known = {f.name for f in cls.__dataclass_fields__.values()}
filtered = {k: v for k, v in config_data.items() if k in known}
return cls(**filtered)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# COMPONENT MODULES
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class ObservationEncoder(nn.Module):
"""Encode observations into latent embeddings.
Architecture: Linear β LayerNorm β SiLU β Linear
Heritage: Abigail EncoderNetwork, adapted for tutoring observation space.
"""
def __init__(self, obs_dim: int, latent_dim: int, hidden_dim: int = 256):
super().__init__()
self.net = nn.Sequential(
nn.Linear(obs_dim, hidden_dim),
nn.LayerNorm(hidden_dim),
nn.SiLU(),
nn.Linear(hidden_dim, latent_dim),
)
def forward(self, obs: Tensor) -> Tensor:
return self.net(obs)
class ObservationDecoder(nn.Module):
"""Decode features back to observation space.
Architecture: Linear β LayerNorm β SiLU β Linear
Heritage: Abigail DecoderNetwork.
"""
def __init__(self, feature_dim: int, obs_dim: int, hidden_dim: int = 256):
super().__init__()
self.net = nn.Sequential(
nn.Linear(feature_dim, hidden_dim),
nn.LayerNorm(hidden_dim),
nn.SiLU(),
nn.Linear(hidden_dim, obs_dim),
)
def forward(self, features: Tensor) -> Tensor:
return self.net(features)
class ActionEmbedding(nn.Module):
"""Embed discrete tutoring actions into continuous space."""
def __init__(self, num_actions: int, embed_dim: int):
super().__init__()
self.embed = nn.Embedding(num_actions, embed_dim)
def forward(self, action: Tensor) -> Tensor:
return self.embed(action.long())
class DeterministicTransition(nn.Module):
"""GRU-based deterministic state transition.
Heritage: Abigail RSSM deterministic path.
Projects [z_{t-1}, a_t] to hidden_dim, then feeds through GRU:
x = Linear([z, a])
h_t = GRU(x, h_{t-1})
"""
def __init__(self, hidden_dim: int, latent_dim: int, action_embed_dim: int):
super().__init__()
self.pre = nn.Linear(latent_dim + action_embed_dim, hidden_dim)
self.gru = nn.GRUCell(
input_size=hidden_dim,
hidden_size=hidden_dim,
)
def forward(self, h_prev: Tensor, z_prev: Tensor, a_embed: Tensor) -> Tensor:
x = torch.cat([z_prev, a_embed], dim=-1)
x = self.pre(x)
h = self.gru(x, h_prev)
return h
class StochasticLatent(nn.Module):
"""Gaussian stochastic latent variable with prior and posterior.
Heritage: Abigail RSSM stochastic path.
Prior: p(z_t | h_t) β 2-layer MLP (hidden_dim β hidden_dim β 2*latent_dim)
Posterior: q(z_t | h_t, o_t) β 2-layer MLP (hidden_dim+latent_dim β hidden_dim β 2*latent_dim)
"""
def __init__(self, hidden_dim: int, latent_dim: int, obs_embed_dim: int):
super().__init__()
self.prior_net = nn.Sequential(
nn.Linear(hidden_dim, hidden_dim),
nn.SiLU(),
nn.Linear(hidden_dim, latent_dim * 2),
)
self.posterior_net = nn.Sequential(
nn.Linear(hidden_dim + obs_embed_dim, hidden_dim),
nn.SiLU(),
nn.Linear(hidden_dim, latent_dim * 2),
)
self.min_std = 0.1
def _split_params(self, params: Tensor) -> tuple[Tensor, Tensor, Normal]:
"""Split into mean and std, return distribution."""
mu, log_std = params.chunk(2, dim=-1)
std = F.softplus(log_std) + self.min_std
return mu, std, Normal(mu, std)
def prior(self, h: Tensor) -> tuple[Tensor, Tensor, Normal]:
return self._split_params(self.prior_net(h))
def posterior(self, h: Tensor, obs_embed: Tensor) -> tuple[Tensor, Tensor, Normal]:
x = torch.cat([h, obs_embed], dim=-1)
return self._split_params(self.posterior_net(x))
@staticmethod
def kl_divergence(posterior: Normal, prior: Normal) -> Tensor:
"""KL(posterior || prior), summed over latent dims."""
return torch.distributions.kl_divergence(posterior, prior).sum(dim=-1)
class RewardPredictor(nn.Module):
"""Predict scalar reward from RSSM features."""
def __init__(self, feature_dim: int, hidden_dim: int = 64):
super().__init__()
self.net = nn.Sequential(
nn.Linear(feature_dim, hidden_dim),
nn.SiLU(),
nn.Linear(hidden_dim, 1),
)
def forward(self, features: Tensor) -> Tensor:
return self.net(features).squeeze(-1)
class DonePredictor(nn.Module):
"""Predict episode termination (logit) from RSSM features."""
def __init__(self, feature_dim: int, hidden_dim: int = 64):
super().__init__()
self.net = nn.Sequential(
nn.Linear(feature_dim, hidden_dim),
nn.SiLU(),
nn.Linear(hidden_dim, 1),
)
def forward(self, features: Tensor) -> Tensor:
return self.net(features).squeeze(-1)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# COMPLETE RSSM MODEL
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class TutoringRSSM(nn.Module):
"""Complete RSSM world model for tutoring domain.
Integrates all components:
- Observation encoder/decoder (Linear β LayerNorm β SiLU β Linear)
- Action embedding (nn.Embedding)
- Projection + GRU deterministic transition
- Gaussian stochastic prior/posterior (2-layer MLPs)
- Reward and done predictors (2-layer MLPs)
- EMA target encoder (VL-JEPA heritage)
Heritage: Abigail core/world_model.py WorldModel, adapted for
KAT's tutoring-specific dimensions and loss functions.
"""
def __init__(self, config: TutoringWorldModelConfig):
super().__init__()
self.config = config
# Feature dimension: h + z
self.feature_dim = config.hidden_dim + config.latent_dim
# Action embedding (small enough for direct embedding)
action_embed_dim = min(32, config.action_dim * 4)
self.action_embed = ActionEmbedding(config.action_dim, action_embed_dim)
# Observation encoder
self.obs_encoder = ObservationEncoder(
config.obs_dim, config.latent_dim, config.encoder_hidden,
)
# RSSM core
self.transition = DeterministicTransition(
config.hidden_dim, config.latent_dim, action_embed_dim,
)
self.stochastic = StochasticLatent(
config.hidden_dim, config.latent_dim, config.latent_dim,
)
# Predictors
self.obs_decoder = ObservationDecoder(
self.feature_dim, config.obs_dim, config.decoder_hidden,
)
self.reward_pred = RewardPredictor(self.feature_dim)
self.done_pred = DonePredictor(self.feature_dim)
# EMA target encoder (VL-JEPA heritage)
self.target_encoder = ObservationEncoder(
config.obs_dim, config.latent_dim, config.encoder_hidden,
)
# Initialize target encoder from main encoder
self.target_encoder.load_state_dict(self.obs_encoder.state_dict())
for p in self.target_encoder.parameters():
p.requires_grad = False
# Dropout
self.dropout = nn.Dropout(config.dropout)
self._param_count = sum(p.numel() for p in self.parameters() if p.requires_grad)
def initial_state(self, batch_size: int) -> tuple[Tensor, Tensor]:
"""Create initial RSSM state (h_0, z_0)."""
device = next(self.parameters()).device
h = torch.zeros(batch_size, self.config.hidden_dim, device=device)
z = torch.zeros(batch_size, self.config.latent_dim, device=device)
return h, z
def get_features(self, h: Tensor, z: Tensor) -> Tensor:
"""Concatenate deterministic and stochastic state."""
return torch.cat([h, z], dim=-1)
def observe_step(
self,
h_prev: Tensor,
z_prev: Tensor,
action: Tensor,
obs: Tensor,
) -> dict[str, Any]:
"""One observation step: process real observation.
Uses posterior inference for training.
Returns dict with:
h, z, prior_dist, posterior_dist, features,
pred_obs, pred_reward, pred_done
"""
# Embed action
a_embed = self.action_embed(action)
# Deterministic transition
h = self.transition(h_prev, z_prev, a_embed)
# Encode observation
obs_embed = self.obs_encoder(obs)
# Prior and posterior
prior_mu, prior_sigma, prior_dist = self.stochastic.prior(h)
post_mu, post_sigma, posterior_dist = self.stochastic.posterior(h, obs_embed)
# Sample from posterior (training mode)
z = posterior_dist.rsample()
# Predictions from features
features = self.get_features(h, z)
pred_obs = self.obs_decoder(features)
pred_reward = self.reward_pred(features)
pred_done = self.done_pred(features)
return {
"h": h,
"z": z,
"prior_dist": prior_dist,
"posterior_dist": posterior_dist,
"features": features,
"pred_obs": pred_obs,
"pred_reward": pred_reward,
"pred_done": pred_done,
}
def imagine_step(
self,
h_prev: Tensor,
z_prev: Tensor,
action: Tensor,
) -> dict[str, Any]:
"""One imagination step: predict without observation.
Uses prior only (no posterior β for planning/counterfactual).
Returns dict with:
h, z, prior_dist, features, pred_obs, pred_reward, pred_done
"""
a_embed = self.action_embed(action)
h = self.transition(h_prev, z_prev, a_embed)
prior_mu, prior_sigma, prior_dist = self.stochastic.prior(h)
z = prior_dist.rsample()
features = self.get_features(h, z)
pred_obs = self.obs_decoder(features)
pred_reward = self.reward_pred(features)
pred_done = self.done_pred(features)
return {
"h": h,
"z": z,
"prior_dist": prior_dist,
"features": features,
"pred_obs": pred_obs,
"pred_reward": pred_reward,
"pred_done": pred_done,
}
@torch.no_grad()
def update_target_encoder(self) -> None:
"""EMA update of target encoder (VL-JEPA heritage)."""
m = self.config.ema_momentum
for p_main, p_target in zip(
self.obs_encoder.parameters(),
self.target_encoder.parameters(),
):
p_target.data.mul_(m).add_(p_main.data, alpha=1.0 - m)
@classmethod
def from_pretrained(cls, checkpoint_path: str, device: str = "cpu") -> "TutoringRSSM":
"""Load a pretrained model from a checkpoint file.
Args:
checkpoint_path: Path to .pt checkpoint file.
device: Device to load onto ('cpu', 'cuda', etc.)
Returns:
Loaded TutoringRSSM model in eval mode.
Example:
>>> model = TutoringRSSM.from_pretrained("tutoring_rssm_best.pt")
>>> h, z = model.initial_state(batch_size=1)
>>> obs = torch.randn(1, 20)
>>> action = torch.tensor([2]) # hint_l2
>>> result = model.observe_step(h, z, action, obs)
"""
checkpoint = torch.load(checkpoint_path, map_location=device, weights_only=False)
# Extract config
config_dict = checkpoint.get("config", {})
known = {f.name for f in TutoringWorldModelConfig.__dataclass_fields__.values()}
filtered = {k: v for k, v in config_dict.items() if k in known}
config = TutoringWorldModelConfig(**filtered)
# Build model and load weights
model = cls(config)
model.load_state_dict(checkpoint["model_state_dict"])
model.to(device)
model.eval()
logger.info(
"Loaded TutoringRSSM from %s (epoch %d, params %d)",
checkpoint_path,
checkpoint.get("epoch", -1),
sum(p.numel() for p in model.parameters()),
)
return model
|