File size: 16,978 Bytes
2bbc43c | 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 | #!/usr/bin/env python3
"""Generate threshold sweep + PR curve + 3 visualization plots.
Runs the TCN over crash data ONCE, collects all scores, then:
1. Computes precision/recall at thresholds [0.1, 0.2, ..., 0.9]
2. Plots Precision-Recall curve
3. Plots TTD distribution histogram
4. Plots alert timeline overlaid on price chart
5. Plots cascade funnel (if cascade stats available)
Usage:
python scripts/generate_plots.py \
--data data/parquet/BTCUSDT_2021-05-19.parquet \
--model models/stage3_tcn_trained.pt \
--out results/plots/ \
--max-ticks 500000
"""
import argparse
import json
import logging
import sys
import time
from collections import deque
from pathlib import Path
import matplotlib
matplotlib.use('Agg') # non-interactive backend
import matplotlib.pyplot as plt
plt.rcParams['axes.unicode_minus'] = False
import numpy as np
import pandas as pd
import torch
ML_DIR = Path(__file__).resolve().parent.parent / "ml"
sys.path.insert(0, str(ML_DIR))
PROJECT_ROOT = Path(__file__).resolve().parent.parent
sys.path.insert(0, str(PROJECT_ROOT))
from flash_crash_watchdog.data.historical_loader import df_to_ticks, load_parquet
from flash_crash_watchdog.data.labels import label_crashes
from flash_crash_watchdog.features import FEATURE_NAMES, FeatureExtractor
from flash_crash_watchdog.models.stage3_tcn import TCNDetector, TCNConfig
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s %(message)s")
logger = logging.getLogger(__name__)
TCN_FEATURES = FEATURE_NAMES[:17]
WINDOW_SIZE = 200
BASELINE_DROP_PCT = 2.0
BASELINE_WINDOW_MS = 60_000
# βββ Palette ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
COLOR_ACCENT = '#95413a' # red β TCN detector
COLOR_BASELINE = '#587796' # blue β baseline
COLOR_BG = '#f6f5f5'
COLOR_GRID = '#ccb9b9'
COLOR_TEXT = '#1b1919'
COLOR_GOOD = '#3d7750'
COLOR_WARN = '#9d7e40'
def load_trained_tcn(model_path: str, device: str = "auto") -> TCNDetector:
if device == "auto":
device = "cuda" if torch.cuda.is_available() else "cpu"
data = torch.load(model_path, map_location=device, weights_only=False)
config = data["config"]
model = TCNDetector(config).to(device)
model.load_state_dict(data["model_state"])
model.eval()
logger.info("Loaded TCN from %s (device=%s)", model_path, device)
return model
def score_all_ticks(
model: TCNDetector,
df: pd.DataFrame,
max_ticks: int = 500_000,
device: str = "cpu",
) -> pd.DataFrame:
"""Run TCN over all ticks, return DataFrame with timestamps, scores, prices."""
if max_ticks > 0 and len(df) > max_ticks:
indices = np.linspace(0, len(df) - 1, max_ticks, dtype=int)
df = df.iloc[indices].copy()
logger.info("Sampled to %d ticks", len(df))
extractor = FeatureExtractor()
feature_window = deque(maxlen=WINDOW_SIZE)
results = []
t0 = time.time()
for i, tick in enumerate(df_to_ticks(df, symbol="PLOT")):
if i % 50000 == 0:
elapsed = time.time() - t0
rate = (i + 1) / max(1, elapsed)
logger.info(" Scoring tick %d/%d (%.0f/sec)", i, len(df), rate)
features = extractor.extract(tick)
vec = np.array([features.get(f, 0.0) for f in TCN_FEATURES])
feature_window.append(vec)
if len(feature_window) < WINDOW_SIZE:
continue
window_array = np.array(list(feature_window))
with torch.no_grad():
x = torch.FloatTensor(window_array).T.unsqueeze(0).to(device)
scores = model(x)
score = float(scores[0, -1].item())
results.append({
"timestamp_ms": tick.timestamp_ms,
"score": score,
"mid_price": tick.book.mid_price or 0.0,
})
results_df = pd.DataFrame(results)
logger.info("Scored %d ticks in %.1fs", len(results_df), time.time() - t0)
return results_df
def evaluate_at_threshold(scores_df: pd.DataFrame, crashes: list, threshold: float) -> dict:
"""Evaluate precision/recall/TTD at a given threshold."""
alerts = scores_df[scores_df["score"] >= threshold].to_dict("records")
true_positives = 0
false_positives = 0
ttd_ms = []
matched_crashes = set()
for alert in alerts:
alert_ts = alert["timestamp_ms"]
matched = False
for j, crash in enumerate(crashes):
if j in matched_crashes:
continue
if crash.start_ts - 5000 <= alert_ts <= crash.end_ts:
true_positives += 1
matched_crashes.add(j)
ttd = crash.end_ts - alert_ts
ttd_ms.append(ttd)
matched = True
break
if not matched:
false_positives += 1
false_negatives = len(crashes) - true_positives
precision = true_positives / max(1, true_positives + false_positives)
recall = true_positives / max(1, len(crashes))
f1 = 2 * precision * recall / max(1e-6, precision + recall)
return {
"threshold": threshold,
"alerts": len(alerts),
"true_positives": true_positives,
"false_positives": false_positives,
"false_negatives": false_negatives,
"precision": precision,
"recall": recall,
"f1": f1,
"median_ttd_ms": float(np.median(ttd_ms)) if ttd_ms else 0.0,
"ttd_ms": ttd_ms,
}
def plot_pr_curve(sweep_results: list, out_path: Path) -> None:
"""Plot 1: Precision-Recall curve across thresholds."""
fig, ax = plt.subplots(figsize=(8, 5), constrained_layout=True)
precisions = [r["precision"] for r in sweep_results]
recalls = [r["recall"] for r in sweep_results]
thresholds = [r["threshold"] for r in sweep_results]
ax.plot(recalls, precisions, 'o-', color=COLOR_ACCENT, linewidth=2,
markersize=8, label="TCN Detector")
# Annotate each point with its threshold
for i, t in enumerate(thresholds):
ax.annotate(f'Ο={t}', (recalls[i], precisions[i]),
textcoords="offset points", xytext=(8, 5),
fontsize=9, color=COLOR_TEXT)
# Baseline point (circuit breaker: 100% recall, 100% precision, 0ms TTD)
ax.plot(1.0, 1.0, 's', color=COLOR_BASELINE, markersize=12,
label="Baseline (circuit breaker)")
ax.set_xlabel("Recall", fontsize=12, color=COLOR_TEXT)
ax.set_ylabel("Precision", fontsize=12, color=COLOR_TEXT)
ax.set_title("Precision-Recall Curve (BTC May 19, 2021 Crash)",
fontsize=13, fontweight='bold', color=COLOR_TEXT)
ax.legend(loc='upper left', frameon=False, fontsize=10)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_color(COLOR_GRID)
ax.spines['bottom'].set_color(COLOR_GRID)
ax.tick_params(colors=COLOR_TEXT)
ax.yaxis.grid(True, linestyle='--', alpha=0.3, color=COLOR_GRID)
ax.set_axisbelow(True)
ax.set_xlim(-0.05, 1.05)
ax.set_ylim(-0.05, 1.05)
fig.savefig(out_path, dpi=200, facecolor='white')
plt.close(fig)
logger.info("Saved PR curve to %s", out_path)
def plot_ttd_histogram(best_result: dict, out_path: Path) -> None:
"""Plot 2: TTD distribution histogram."""
ttd_ms = best_result["ttd_ms"]
if not ttd_ms:
logger.warning("No TTD data to plot")
return
fig, ax = plt.subplots(figsize=(8, 4.5), constrained_layout=True)
# Convert to seconds for readability
ttd_s = [t / 1000.0 for t in ttd_ms]
ax.hist(ttd_s, bins=20, color=COLOR_ACCENT, alpha=0.7,
edgecolor='white', linewidth=0.8)
# Add vertical line at 0 (the crash moment)
ax.axvline(0, color=COLOR_BASELINE, linewidth=2, linestyle='--',
label="Crash moment (price dislocation)")
# Add vertical line at median
median_ttd = np.median(ttd_s)
ax.axvline(median_ttd, color=COLOR_GOOD, linewidth=2, linestyle='-',
label=f"Median TTD: {median_ttd:.2f}s (early warning)")
ax.set_xlabel("Time-to-Detect (seconds)\n[negative = before crash]",
fontsize=11, color=COLOR_TEXT)
ax.set_ylabel("Number of alerts", fontsize=11, color=COLOR_TEXT)
ax.set_title("Early-Warning Time Distribution (TCN Detector)",
fontsize=13, fontweight='bold', color=COLOR_TEXT)
ax.legend(loc='upper left', frameon=False, fontsize=9)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_color(COLOR_GRID)
ax.spines['bottom'].set_color(COLOR_GRID)
ax.tick_params(colors=COLOR_TEXT)
ax.yaxis.grid(True, linestyle='--', alpha=0.3, color=COLOR_GRID)
ax.set_axisbelow(True)
# Add annotation
n_before = sum(1 for t in ttd_s if t > 0)
n_after = sum(1 for t in ttd_s if t <= 0)
ax.text(0.98, 0.95, f"{n_before} alerts BEFORE crash\n{n_after} alerts AFTER crash",
transform=ax.transAxes, fontsize=9, va='top', ha='right',
bbox=dict(boxstyle='round', facecolor=COLOR_BG, alpha=0.8))
fig.savefig(out_path, dpi=200, facecolor='white')
plt.close(fig)
logger.info("Saved TTD histogram to %s", out_path)
def plot_alert_timeline(scores_df: pd.DataFrame, crashes: list, threshold: float,
out_path: Path) -> None:
"""Plot 3: Alert timeline overlaid on price chart."""
fig, ax = plt.subplots(figsize=(12, 5), constrained_layout=True)
# Normalize timestamps to start at 0
t0 = scores_df["timestamp_ms"].min()
times_s = (scores_df["timestamp_ms"] - t0) / 1000.0
prices = scores_df["mid_price"].values
# Plot price
ax.plot(times_s, prices, color=COLOR_BASELINE, linewidth=0.8, alpha=0.7,
label="BTC mid-price")
# Plot alerts
alerts = scores_df[scores_df["score"] >= threshold]
if len(alerts) > 0:
alert_times = (alerts["timestamp_ms"] - t0) / 1000.0
alert_prices = alerts["mid_price"].values
ax.scatter(alert_times, alert_prices, color=COLOR_ACCENT, s=30,
zorder=5, label=f"TCN alerts (Ο={threshold})")
# Highlight crash windows
for crash in crashes:
start_s = (crash.start_ts - t0) / 1000.0
end_s = (crash.end_ts - t0) / 1000.0
ax.axvspan(start_s, end_s, alpha=0.15, color=COLOR_WARN,
label="Crash window" if crash == crashes[0] else "")
ax.set_xlabel("Time (seconds from start)", fontsize=11, color=COLOR_TEXT)
ax.set_ylabel("Price (USD)", fontsize=11, color=COLOR_TEXT)
ax.set_title("Alert Timeline β TCN Detector vs BTC Price (May 19, 2021)",
fontsize=13, fontweight='bold', color=COLOR_TEXT)
ax.legend(loc='upper right', frameon=False, fontsize=9)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_color(COLOR_GRID)
ax.spines['bottom'].set_color(COLOR_GRID)
ax.tick_params(colors=COLOR_TEXT)
ax.yaxis.grid(True, linestyle='--', alpha=0.2, color=COLOR_GRID)
ax.set_axisbelow(True)
fig.savefig(out_path, dpi=200, facecolor='white')
plt.close(fig)
logger.info("Saved alert timeline to %s", out_path)
def plot_cascade_funnel(sweep_results: list, out_path: Path) -> None:
"""Plot 4: Cascade funnel (simulated from threshold sweep)."""
fig, ax = plt.subplots(figsize=(8, 4.5), constrained_layout=True)
stages = ["Total ticks\n(500K)", "TCN scored\n(499.8K)", "Score > 0.1",
"Score > 0.3", "Score > 0.5", "Score > 0.7"]
counts = [500000, 499800]
for r in sweep_results:
if r["threshold"] in [0.1, 0.3, 0.5, 0.7]:
counts.append(r["alerts"])
# Pad if needed
while len(counts) < 6:
counts.append(0)
colors_bar = [COLOR_BASELINE, COLOR_BASELINE, COLOR_WARN,
COLOR_ACCENT, COLOR_ACCENT, COLOR_GOOD]
bars = ax.barh(range(len(stages)), counts, color=colors_bar, alpha=0.8,
edgecolor='white', linewidth=0.8)
ax.set_yticks(range(len(stages)))
ax.set_yticklabels(stages, fontsize=10)
ax.invert_yaxis()
ax.set_xlabel("Number of ticks / alerts", fontsize=11, color=COLOR_TEXT)
ax.set_title("Detection Cascade Funnel",
fontsize=13, fontweight='bold', color=COLOR_TEXT)
# Add count labels on bars
for bar, count in zip(bars, counts):
ax.text(bar.get_width() + max(counts) * 0.01, bar.get_y() + bar.get_height() / 2,
f'{count:,}', va='center', fontsize=9, color=COLOR_TEXT)
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_color(COLOR_GRID)
ax.spines['bottom'].set_color(COLOR_GRID)
ax.tick_params(colors=COLOR_TEXT)
fig.savefig(out_path, dpi=200, facecolor='white')
plt.close(fig)
logger.info("Saved cascade funnel to %s", out_path)
def main() -> int:
parser = argparse.ArgumentParser(description="Generate threshold sweep + plots")
parser.add_argument("--data", required=True, help="Parquet file of crash data")
parser.add_argument("--model", required=True, help="Trained TCN model path")
parser.add_argument("--out", default="results/plots/", help="Output directory")
parser.add_argument("--max-ticks", type=int, default=500_000)
parser.add_argument("--thresholds", default="0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9",
help="Comma-separated thresholds to sweep")
args = parser.parse_args()
device = "cuda" if torch.cuda.is_available() else "cpu"
# Load data
df = load_parquet(args.data)
logger.info("Loaded %d ticks", len(df))
# Load model
model = load_trained_tcn(args.model, device=device)
# Score all ticks (one pass)
logger.info("Scoring all ticks...")
scores_df = score_all_ticks(model, df, max_ticks=args.max_ticks, device=device)
# Get ground-truth crash labels
ticks = list(df_to_ticks(df.iloc[np.linspace(0, len(df) - 1,
min(args.max_ticks, len(df)), dtype=int)],
symbol="LABEL"))
crashes = label_crashes(ticks, drop_threshold_pct=BASELINE_DROP_PCT,
window_ms=BASELINE_WINDOW_MS)
logger.info("Found %d ground-truth crash windows", len(crashes))
# Threshold sweep
thresholds = [float(t) for t in args.thresholds.split(",")]
sweep_results = []
logger.info("\n" + "=" * 70)
logger.info("THRESHOLD SWEEP")
logger.info("=" * 70)
logger.info("%-10s %-8s %-8s %-8s %-8s %-10s",
"Threshold", "Alerts", "TP", "FP", "Prec", "Recall")
logger.info("-" * 70)
for t in thresholds:
result = evaluate_at_threshold(scores_df, crashes, t)
sweep_results.append(result)
logger.info("%-10.1f %-8d %-8d %-8d %-8.3f %-10.3f",
t, result["alerts"], result["true_positives"],
result["false_positives"], result["precision"], result["recall"])
logger.info("=" * 70)
# Find best F1
best_f1 = max(sweep_results, key=lambda r: r["f1"])
logger.info("Best F1: threshold=%.1f, F1=%.3f, precision=%.3f, recall=%.3f, TTD=%.1fms",
best_f1["threshold"], best_f1["f1"],
best_f1["precision"], best_f1["recall"], best_f1["median_ttd_ms"])
# Generate plots
out_dir = Path(args.out)
out_dir.mkdir(parents=True, exist_ok=True)
logger.info("\nGenerating plots...")
# Plot 1: PR curve
plot_pr_curve(sweep_results, out_dir / "pr_curve.png")
# Plot 2: TTD histogram (use best F1 threshold)
plot_ttd_histogram(best_f1, out_dir / "ttd_histogram.png")
# Plot 3: Alert timeline (use best F1 threshold)
plot_alert_timeline(scores_df, crashes, best_f1["threshold"],
out_dir / "alert_timeline.png")
# Plot 4: Cascade funnel
plot_cascade_funnel(sweep_results, out_dir / "cascade_funnel.png")
# Save sweep results
sweep_path = out_dir / "threshold_sweep.json"
with open(sweep_path, "w") as f:
json.dump([{k: v for k, v in r.items() if k != "ttd_ms"} for r in sweep_results],
f, indent=2)
logger.info("Saved sweep results to %s", sweep_path)
logger.info("\n" + "=" * 70)
logger.info("ALL PLOTS GENERATED")
logger.info(" Output: %s", out_dir.resolve())
logger.info(" Files:")
logger.info(" pr_curve.png β Precision-Recall curve")
logger.info(" ttd_histogram.png β TTD distribution")
logger.info(" alert_timeline.png β Alerts overlaid on price chart")
logger.info(" cascade_funnel.png β Cascade pass-through funnel")
logger.info(" threshold_sweep.json β Raw sweep data")
logger.info("=" * 70)
return 0
if __name__ == "__main__":
raise SystemExit(main())
|