File size: 13,219 Bytes
72558bb | 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 | """
Online Learning Module for ContextFlow
Implements continuous model improvement from real user interactions.
Addresses: Online Learning requirement
"""
import numpy as np
import pickle
from typing import Dict, List, Optional, Any, Tuple
from dataclasses import dataclass, field
from collections import deque
import threading
import time
import json
@dataclass
class InteractionSample:
"""A single interaction sample for online learning"""
state: np.ndarray
action: int
reward: float
next_state: np.ndarray
done: bool
timestamp: float
user_id: str
confidence: float = 0.0
def to_dict(self) -> Dict:
return {
'state': self.state.tolist(),
'action': self.action,
'reward': self.reward,
'next_state': self.next_state.tolist(),
'done': self.done,
'timestamp': self.timestamp,
'user_id': self.user_id,
'confidence': self.confidence
}
@dataclass
class OnlineQNetwork:
"""Q-Network for online learning"""
weights: Dict[str, np.ndarray]
biases: Dict[str, np.ndarray]
version: int = 1
def forward(self, state: np.ndarray) -> np.ndarray:
"""Forward pass through network"""
# Layer 1
h1 = np.maximum(np.dot(state, self.weights['l1']) + self.biases['b1'], 0)
# Layer 2
h2 = np.maximum(np.dot(h1, self.weights['l2']) + self.biases['b2'], 0)
# Output
q_values = np.dot(h2, self.weights['l3']) + self.biases['b3']
return q_values
def clone_from(self, source: 'OnlineQNetwork'):
"""Clone weights from another network"""
self.weights = {k: v.copy() for k, v in source.weights.items()}
self.biases = {k: v.copy() for k, v in source.biases.items()}
self.version = source.version + 1
class OnlineLearningEngine:
"""
Online learning engine for continuous model improvement.
Features:
- Incremental updates from user feedback
- Experience replay buffer
- Target network for stability
- Periodic checkpointing
"""
def __init__(
self,
state_dim: int = 64,
action_dim: int = 10,
hidden_dim: int = 128,
learning_rate: float = 0.001,
gamma: float = 0.95,
batch_size: int = 32,
buffer_size: int = 10000,
target_update_freq: int = 100
):
self.state_dim = state_dim
self.action_dim = action_dim
self.learning_rate = learning_rate
self.gamma = gamma
self.batch_size = batch_size
self.target_update_freq = target_update_freq
# Initialize networks
self.q_network = self._init_network()
self.target_network = self._init_network()
self._sync_target()
# Experience replay buffer
self.replay_buffer = deque(maxlen=buffer_size)
# Training stats
self.total_updates = 0
self.update_count = 0
# Lock for thread safety
self.lock = threading.Lock()
# Callbacks for events
self.on_checkpoint = None
self.on_update = None
def _init_network(self) -> OnlineQNetwork:
"""Initialize network weights"""
np.random.seed(42)
return OnlineQNetwork(
weights={
'l1': np.random.randn(self.state_dim, self.hidden_dim) * 0.1,
'l2': np.random.randn(self.hidden_dim, self.hidden_dim) * 0.1,
'l3': np.random.randn(self.hidden_dim, self.action_dim) * 0.1
},
biases={
'b1': np.zeros(self.hidden_dim),
'b2': np.zeros(self.hidden_dim),
'b3': np.zeros(self.action_dim)
},
version=1
)
def _sync_target(self):
"""Copy Q-network to target network"""
self.target_network.clone_from(self.q_network)
def add_interaction(
self,
state: np.ndarray,
action: int,
reward: float,
next_state: np.ndarray,
done: bool,
user_id: str = 'anonymous',
confidence: float = 0.0
):
"""Add a new interaction to the replay buffer"""
sample = InteractionSample(
state=state,
action=action,
reward=reward,
next_state=next_state,
done=done,
timestamp=time.time(),
user_id=user_id,
confidence=confidence
)
with self.lock:
self.replay_buffer.append(sample)
# Trigger online update
if len(self.replay_buffer) >= self.batch_size:
self.update()
def update(self) -> Optional[Dict]:
"""Perform a single online update"""
with self.lock:
if len(self.replay_buffer) < self.batch_size:
return None
# Sample batch
indices = np.random.choice(len(self.replay_buffer), self.batch_size, replace=False)
batch = [self.replay_buffer[i] for i in indices]
# Extract batch arrays
states = np.array([s.state for s in batch])
actions = np.array([s.action for s in batch])
rewards = np.array([s.reward for s in batch])
next_states = np.array([s.next_state for s in batch])
dones = np.array([s.done for s in batch])
# Compute targets
current_q = self.q_network.forward(states)
next_q = self.target_network.forward(next_states)
targets = current_q.copy()
max_next_q = np.max(next_q, axis=1)
for i in range(self.batch_size):
if dones[i]:
targets[i, actions[i]] = rewards[i]
else:
targets[i, actions[i]] = rewards[i] + self.gamma * max_next_q[i]
# Compute gradients and update (simplified SGD)
# In production, would use PyTorch autograd
errors = targets - current_q
# Gradient descent on layer 3
h2 = np.maximum(np.dot(states, self.q_network.weights['l1']) + self.q_network.biases['b1'], 0)
h3 = np.maximum(np.dot(h2, self.q_network.weights['l2']) + self.q_network.biases['b2'], 0)
for i in range(self.batch_size):
grad_l3 = np.outer(h3[i], errors[i])
grad_b3 = errors[i]
self.q_network.weights['l3'] += self.learning_rate * grad_l3
self.q_network.biases['b3'] += self.learning_rate * grad_b3
# Update target network periodically
self.update_count += 1
if self.update_count % self.target_update_freq == 0:
self._sync_target()
self.total_updates += 1
loss = np.mean(errors ** 2)
result = {
'loss': float(loss),
'updates': self.total_updates,
'buffer_size': len(self.replay_buffer)
}
if self.on_update:
self.on_update(result)
return result
def predict(self, state: np.ndarray) -> Tuple[int, float]:
"""Predict best action for a state"""
q_values = self.q_network.forward(state)
action = int(np.argmax(q_values))
confidence = float(np.max(q_values))
return action, confidence
def get_q_values(self, state: np.ndarray) -> np.ndarray:
"""Get Q-values for all actions"""
return self.q_network.forward(state)
def save_checkpoint(self, path: str):
"""Save model checkpoint"""
checkpoint = {
'q_network': {
'weights': {k: v.tolist() for k, v in self.q_network.weights.items()},
'biases': {k: v.tolist() for k, v in self.q_network.biases.items()},
'version': self.q_network.version
},
'total_updates': self.total_updates,
'buffer_size': len(self.replay_buffer)
}
with open(path, 'w') as f:
json.dump(checkpoint, f)
if self.on_checkpoint:
self.on_checkpoint(path)
return path
def load_checkpoint(self, path: str):
"""Load model checkpoint"""
with open(path, 'r') as f:
checkpoint = json.load(f)
self.q_network.weights = {k: np.array(v) for k, v in checkpoint['q_network']['weights'].items()}
self.q_network.biases = {k: np.array(v) for k, v in checkpoint['q_network']['biases'].items()}
self.q_network.version = checkpoint['q_network']['version']
self.total_updates = checkpoint['total_updates']
self._sync_target()
return checkpoint
def get_stats(self) -> Dict:
"""Get learning statistics"""
with self.lock:
return {
'total_updates': self.total_updates,
'buffer_size': len(self.replay_buffer),
'buffer_capacity': self.replay_buffer.maxlen,
'network_version': self.q_network.version
}
class AdaptiveLearningScheduler:
"""
Adaptive learning rate scheduler based on performance.
Reduces learning rate when performance plateaus.
Increases when making good progress.
"""
def __init__(
self,
initial_lr: float = 0.001,
min_lr: float = 0.00001,
patience: int = 10,
factor: float = 0.5
):
self.current_lr = initial_lr
self.min_lr = min_lr
self.patience = patience
self.factor = factor
self.best_loss = float('inf')
self.wait_count = 0
self.history = []
def step(self, loss: float) -> float:
"""Update learning rate based on loss"""
self.history.append(loss)
if len(self.history) < 2:
return self.current_lr
if loss < self.best_loss:
self.best_loss = loss
self.wait_count = 0
else:
self.wait_count += 1
if self.wait_count >= self.patience and self.current_lr > self.min_lr:
self.current_lr *= self.factor
self.wait_count = 0
return self.current_lr
# API Integration
class OnlineLearningAPI:
"""REST API wrapper for online learning"""
def __init__(self, engine: OnlineLearningEngine):
self.engine = engine
def record_feedback(
self,
user_id: str,
state: List[float],
action: int,
quality: int, # 1-5 quality rating
comment: Optional[str] = None
) -> Dict:
"""
Record user feedback and trigger online update.
Quality mapping:
- 1: Very unhelpful (-1.0)
- 2: Unhelpful (-0.5)
- 3: Neutral (0.0)
- 4: Helpful (0.5)
- 5: Very helpful (1.0)
"""
reward_map = {1: -1.0, 2: -0.5, 3: 0.0, 4: 0.5, 5: 1.0}
reward = reward_map.get(quality, 0.0)
state_arr = np.array(state)
# Simulate next state (in real impl, would come from actual interaction)
next_state = state_arr + np.random.randn(len(state_arr)) * 0.1
self.engine.add_interaction(
state=state_arr,
action=action,
reward=reward,
next_state=next_state,
done=False,
user_id=user_id,
confidence=reward
)
return {
'status': 'recorded',
'reward': reward,
'total_updates': self.engine.total_updates
}
def get_prediction(self, state: List[float]) -> Dict:
"""Get prediction for a state"""
state_arr = np.array(state)
action, confidence = self.engine.predict(state_arr)
q_values = self.engine.get_q_values(state_arr)
return {
'action': action,
'confidence': confidence,
'q_values': q_values.tolist()
}
def get_stats(self) -> Dict:
"""Get learning stats"""
return self.engine.get_stats()
# Example usage
if __name__ == "__main__":
engine = OnlineLearningEngine()
api = OnlineLearningAPI(engine)
print("Online Learning Engine initialized")
print(f"State dim: {engine.state_dim}, Action dim: {engine.action_dim}")
# Simulate some feedback
for i in range(100):
state = np.random.randn(64)
action = np.random.randint(0, 10)
quality = np.random.randint(1, 6)
result = api.record_feedback(
user_id='test_user',
state=state.tolist(),
action=action,
quality=quality
)
print(f"\\nAfter 100 interactions:")
print(f" Updates: {result['total_updates']}")
print(f" Stats: {api.get_stats()}")
|