Spaces:
Sleeping
Sleeping
File size: 19,088 Bytes
558db1e | 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 | """
End-to-End Portfolio Forecast Model
=====================================
A neural network that learns to predict expected returns optimised for
*portfolio construction quality*, not forecast accuracy.
Architecture
------------
Raw Features β Per-Asset Encoder (shared MLP)
β Cross-Sectional Multi-Head Attention
β ΞΌ_predicted + vol_scale
β DifferentiablePortfolioLayer β w*
β Loss = βSharpe(w*, realised) | SPO+ regret
The cross-asset attention is the critical structural choice: it lets
AAPL's features affect TLT's predicted return because the downstream
optimizer cares about covariance, not just individual forecasts.
Papers
------
- Amos & Kolter (2017), OptNet.
- Agrawal et al. (2019), cvxpylayers.
- Elmachtoub & Grigas (2022), Smart Predict-then-Optimize (SPO+).
"""
import os
import hashlib
import pickle
import numpy as np
import pandas as pd
try:
import torch
import torch.nn as nn
from torch.utils.data import DataLoader, TensorDataset
_TORCH_AVAILABLE = True
except ImportError:
_TORCH_AVAILABLE = False
class _MockTorch:
Tensor = object
torch = _MockTorch()
class _MockNN:
Module = object
nn = _MockNN()
DataLoader = object
TensorDataset = object
from typing import Tuple, Dict, Optional
from config import logger, Color
if _TORCH_AVAILABLE:
from differentiable_optimizer import DifferentiablePortfolioLayer
else:
DifferentiablePortfolioLayer = None
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 1. NEURAL ARCHITECTURE
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class PortfolioForecastNetwork(nn.Module):
"""
Predicts per-asset expected returns optimised for decision quality.
The key insight: the loss function is portfolio Sharpe ratio (or SPO+
regret), *not* MSE. Gradients flow backward through cvxpylayers into
the network weights.
"""
def __init__(self, n_assets: int, n_features: int,
hidden_dim: int = 64):
super().__init__()
self.n_assets = n_assets
# ββ Per-asset temporal encoder (shared weights) ββ
self.asset_encoder = nn.Sequential(
nn.Linear(n_features, hidden_dim),
nn.LayerNorm(hidden_dim),
nn.GELU(),
nn.Dropout(0.1),
nn.Linear(hidden_dim, hidden_dim // 2),
nn.GELU(),
)
# ββ Cross-sectional attention ββ
# Assets "talk" to each other so that predicting high AAPL return
# when MSFT is also high leads to diversification-aware weights.
self.cross_asset_attention = nn.MultiheadAttention(
embed_dim=hidden_dim // 2,
num_heads=4,
dropout=0.1,
batch_first=True,
)
# ββ Output heads ββ
self.return_head = nn.Linear(hidden_dim // 2, 1)
# Diagonal volatility scaling (Softplus β positive)
self.vol_adjustment = nn.Sequential(
nn.Linear(hidden_dim // 2, 1),
nn.Softplus(),
)
def forward(self, x: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]:
"""
Args
----
x : (batch, n_assets, n_features)
Returns
-------
mu : (batch, n_assets) predicted expected returns
vol_scale : (batch, n_assets) predicted volatility scaling factors
"""
# Encode each asset independently (shared weights)
encoded = self.asset_encoder(x) # (B, N, H/2)
# Cross-asset attention + residual
attended, _ = self.cross_asset_attention(encoded, encoded, encoded)
attended = attended + encoded # (B, N, H/2)
mu = self.return_head(attended).squeeze(-1) # (B, N)
vol_scale = self.vol_adjustment(attended).squeeze(-1) # (B, N)
return mu, vol_scale
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 2. TRAINER
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class E2EPortfolioTrainer:
"""
Trains ``PortfolioForecastNetwork`` using portfolio performance as the
loss function, back-propagating through the differentiable optimisation
layer.
Loss functions
--------------
sharpe : maximise Sharpe ratio
spo : Smart Predict-then-Optimize+ regret (Elmachtoub & Grigas 2022)
"""
def __init__(self, n_assets: int, n_features: int,
risk_factor: float = 3.0,
loss_type: str = "spo",
hidden_dim: int = 64,
lr: float = 1e-3,
device: str = "cpu"):
self.device = torch.device(device)
self.loss_type = loss_type
self.n_assets = n_assets
self.n_features = n_features
self.forecast_net = PortfolioForecastNetwork(
n_assets, n_features, hidden_dim,
).to(self.device)
self.opt_layer = DifferentiablePortfolioLayer(
n_assets, risk_factor,
)
self.optimizer = torch.optim.AdamW(
self.forecast_net.parameters(),
lr=lr,
weight_decay=1e-4,
)
self.scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(
self.optimizer, T_max=100,
)
# ------------------------------------------------------------------ #
# Loss functions #
# ------------------------------------------------------------------ #
def _portfolio_sharpe_loss(
self,
weights: torch.Tensor,
realized_returns: torch.Tensor,
rfr: float = 0.04,
trading_days: int = 252,
) -> torch.Tensor:
"""
Negative Sharpe ratio as training loss.
weights : (batch, n_assets)
realized_returns : (batch, horizon, n_assets)
"""
# Portfolio return at each step in the horizon (B, H)
port_rets = (realized_returns * weights.unsqueeze(1)).sum(dim=-1)
daily_rfr = rfr / trading_days
excess = port_rets - daily_rfr
mean_excess = excess.mean(dim=1)
std_excess = excess.std(dim=1) + 1e-8
sharpe = mean_excess / std_excess
return -sharpe.mean()
def _spo_loss(
self,
predicted_mu: torch.Tensor,
realized_returns: torch.Tensor,
L: torch.Tensor,
) -> torch.Tensor:
"""
SPO+ regret loss (Elmachtoub & Grigas 2022).
Penalises the gap between the realised portfolio value achieved by
predicted weights vs. the oracle weights (known only in hindsight).
"""
# Weights from predicted returns β routed through forward() so solver
# args stay consistent with any future changes to the opt layer.
predicted_weights = self.opt_layer(predicted_mu, L)
# Oracle weights β from realised returns (available only in training)
realized_mean = realized_returns.mean(dim=1).detach()
with torch.no_grad():
oracle_weights, = self.opt_layer.layer(
realized_mean, L,
solver_args={"solve_method": "SCS", "eps": 1e-4, "max_iters": 5000},
)
# Decision regret
oracle_value = (oracle_weights * realized_mean).sum(dim=-1)
predicted_value = (predicted_weights * realized_mean).sum(dim=-1)
regret = oracle_value - predicted_value
return regret.mean()
# ------------------------------------------------------------------ #
# Data preparation #
# ------------------------------------------------------------------ #
def build_feature_tensors(
self,
features_dict: Dict[str, pd.DataFrame],
returns_df: pd.DataFrame,
horizon: int = 21,
) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor, list, pd.DatetimeIndex]:
"""
Converts the existing ``features_dict`` from
``data.build_ml_features()`` into aligned tensors for batch training.
Returns
-------
X : (T, n_assets, n_features)
y : (T, horizon, n_assets) realised forward returns
cov_L : (T, n_assets, n_assets) Cholesky of rolling EWMA covariance
tickers : list
common_idx : DatetimeIndex
"""
tickers = list(features_dict.keys())
n_assets = len(tickers)
# Align time indices across all assets
all_dfs = {t: features_dict[t].dropna() for t in tickers}
common_idx = all_dfs[tickers[0]].index
for t in tickers[1:]:
common_idx = common_idx.intersection(all_dfs[t].index)
common_idx = common_idx.sort_values()
feature_cols = [c for c in all_dfs[tickers[0]].columns
if c not in ("target", "ret")]
n_features = len(feature_cols)
# ββ Build X and y arrays ββ
X_list, y_list = [], []
for idx in common_idx:
asset_feats = []
asset_targets = []
for t in tickers:
row = all_dfs[t].loc[idx]
asset_feats.append(row[feature_cols].values.astype(np.float32))
asset_targets.append(float(row.get("target", 0.0)))
X_list.append(asset_feats)
y_list.append(asset_targets)
X = torch.tensor(np.array(X_list), dtype=torch.float32)
# y is a single-step target; reshape to (T, 1, N) for horizon dim
y = torch.tensor(np.array(y_list), dtype=torch.float32).unsqueeze(1)
# ββ Rolling Cholesky of EWMA covariance ββ
T = len(common_idx)
cov_L = torch.zeros(T, n_assets, n_assets, dtype=torch.float32)
# Use the actual returns aligned to this common index for EWMA cov
aligned_rets = returns_df[tickers].reindex(common_idx).fillna(0.0)
ewma_cov = aligned_rets.ewm(halflife=126).cov()
for i, date in enumerate(common_idx):
try:
cov_slice = ewma_cov.loc[date].values.reshape(n_assets, n_assets)
# Regularise + Cholesky
cov_reg = cov_slice + np.eye(n_assets) * 1e-6
L_np = np.linalg.cholesky(cov_reg).astype(np.float32)
cov_L[i] = torch.from_numpy(L_np)
except (np.linalg.LinAlgError, KeyError, ValueError):
cov_L[i] = torch.eye(n_assets, dtype=torch.float32)
return X, y, cov_L, tickers, common_idx
# ------------------------------------------------------------------ #
# Training loop #
# ------------------------------------------------------------------ #
def train(
self,
features_dict: Dict[str, pd.DataFrame],
returns_df: pd.DataFrame,
n_epochs: int = 50,
batch_size: int = 32,
val_split: float = 0.2,
rfr: float = 0.04,
silent: bool = False,
) -> Dict[str, list]:
"""Full training loop. Returns history dict."""
X, y, cov_L, tickers, idx = self.build_feature_tensors(
features_dict, returns_df,
)
T = X.shape[0]
if T < 10:
logger.warning(f"E2E: Only {T} aligned samples β too few to train. "
"Returning empty history.")
return {"train_loss": [], "val_loss": [], "val_sharpe": []}
train_end = int(T * (1 - val_split))
# Strict temporal split β no shuffling
X_train, X_val = X[:train_end], X[train_end:]
y_train, y_val = y[:train_end], y[train_end:]
L_train, L_val = cov_L[:train_end], cov_L[train_end:]
train_ds = TensorDataset(X_train, y_train, L_train)
train_loader = DataLoader(train_ds, batch_size=batch_size, shuffle=False)
history = {"train_loss": [], "val_loss": [], "val_sharpe": []}
for epoch in range(n_epochs):
self.forecast_net.train()
epoch_loss = 0.0
n_batches = 0
for X_batch, y_batch, L_batch in train_loader:
X_batch = X_batch.to(self.device)
y_batch = y_batch.to(self.device)
L_batch = L_batch.to(self.device)
self.optimizer.zero_grad()
# Forward: predict returns + vol scaling
mu_pred, vol_scale = self.forecast_net(X_batch)
# Scale Cholesky by predicted vol adjustment
L_scaled = L_batch * vol_scale.unsqueeze(-1)
# Differentiable portfolio weights
try:
weights = self.opt_layer(mu_pred, L_scaled)
except Exception as e:
logger.warning(f"E2E: solver failed in epoch {epoch}: {e}")
continue
# Loss
if self.loss_type == "spo":
loss = self._spo_loss(mu_pred, y_batch, L_scaled)
else: # "sharpe" or fallback
loss = self._portfolio_sharpe_loss(weights, y_batch, rfr)
if torch.isnan(loss) or torch.isinf(loss):
continue
loss.backward()
# Gradient clipping β critical for stability through opt layer
torch.nn.utils.clip_grad_norm_(
self.forecast_net.parameters(), max_norm=1.0,
)
self.optimizer.step()
epoch_loss += loss.item()
n_batches += 1
self.scheduler.step()
# ββ Validation ββ
self.forecast_net.eval()
with torch.no_grad():
mu_val, vol_val = self.forecast_net(X_val.to(self.device))
L_val_dev = L_val.to(self.device)
L_val_scaled = L_val_dev * vol_val.unsqueeze(-1)
try:
w_val = self.opt_layer(mu_val, L_val_scaled)
val_loss = self._portfolio_sharpe_loss(
w_val, y_val.to(self.device), rfr,
).item()
port_rets_val = (y_val.squeeze(1).to(self.device) * w_val).sum(-1)
val_sharpe = float(
(port_rets_val.mean() / (port_rets_val.std() + 1e-8))
* np.sqrt(252)
)
except Exception:
val_loss = float("nan")
val_sharpe = float("nan")
avg_train = epoch_loss / max(n_batches, 1)
history["train_loss"].append(avg_train)
history["val_loss"].append(val_loss)
history["val_sharpe"].append(val_sharpe)
if not silent and epoch % 10 == 0:
print(
f" E2E Epoch {epoch:3d} β "
f"Train Loss: {avg_train:+.4f} β "
f"Val Sharpe: {val_sharpe:+.3f}"
)
return history
# ------------------------------------------------------------------ #
# Inference #
# ------------------------------------------------------------------ #
def predict(
self,
features_dict: Dict[str, pd.DataFrame],
base_cov: pd.DataFrame,
) -> Tuple[pd.Series, pd.Series]:
"""
Run inference and return expected returns + suggested weights.
Integrates with the existing ``OptimizationResult`` interface.
"""
self.forecast_net.eval()
tickers = list(features_dict.keys())
n = len(tickers)
# Build latest feature vector
latest_features = []
feature_cols: Optional[list] = None
for t in tickers:
df = features_dict[t].dropna()
if feature_cols is None:
feature_cols = [c for c in df.columns
if c not in ("target", "ret")]
latest_features.append(
df[feature_cols].iloc[-1].values.astype(np.float32)
)
X = torch.tensor(
np.array(latest_features), dtype=torch.float32,
).unsqueeze(0) # (1, N, F)
# Cholesky of base covariance
Sigma = base_cov.reindex(index=tickers, columns=tickers).fillna(0).values
try:
L_np = np.linalg.cholesky(
Sigma + np.eye(n) * 1e-6
).astype(np.float32)
except np.linalg.LinAlgError:
L_np = np.eye(n, dtype=np.float32)
L = torch.tensor(L_np).unsqueeze(0) # (1, N, N)
with torch.no_grad():
mu_pred, vol_scale = self.forecast_net(X)
L_scaled = L * vol_scale.unsqueeze(-1)
weights = self.opt_layer(mu_pred, L_scaled)
mu_series = pd.Series(mu_pred.squeeze().numpy(), index=tickers)
w_series = pd.Series(weights.squeeze().numpy(), index=tickers)
return mu_series, w_series
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# 3. CACHE HELPERS
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _cache_key(tickers: list, n_obs: int, rfr: float) -> str:
raw = f"{sorted(tickers)}_{n_obs}_{rfr:.6f}"
return hashlib.md5(raw.encode()).hexdigest()
def save_model(trainer: E2EPortfolioTrainer, cache_dir: str,
tickers: list, n_obs: int, rfr: float) -> str:
os.makedirs(cache_dir, exist_ok=True)
key = _cache_key(tickers, n_obs, rfr)
path = os.path.join(cache_dir, f"e2e_{key}.pkl")
torch.save(trainer.forecast_net.state_dict(), path)
return path
def load_model(trainer: E2EPortfolioTrainer, cache_dir: str,
tickers: list, n_obs: int, rfr: float) -> bool:
key = _cache_key(tickers, n_obs, rfr)
path = os.path.join(cache_dir, f"e2e_{key}.pkl")
if os.path.exists(path):
trainer.forecast_net.load_state_dict(torch.load(path, weights_only=True))
return True
return False
|