diff --git a/paper/src/chapters/figures/results/generated/final/final_focus_headline_summary.json b/paper/src/chapters/figures/results/generated/final/final_focus_headline_summary.json index a7b1fd1..6e21166 100644 --- a/paper/src/chapters/figures/results/generated/final/final_focus_headline_summary.json +++ b/paper/src/chapters/figures/results/generated/final/final_focus_headline_summary.json @@ -3,7 +3,7 @@ "focus_cohort": "max_alpha_coverage", "focus_sweep_id": "i88nw811", "focus_run_count": 768, - "git_commit": "105b01497600fd31ec07ae49271e680517321cba", + "git_commit": "ace52e8e14e0f7fa96ab5eb113c0c898b0bce1a0", "alpha_cells": 11, "alpha_min": 0.0, "alpha_max": 1.0, diff --git a/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_by_alpha.pdf b/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_by_alpha.pdf index b47a4fd..6534576 100644 Binary files a/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_by_alpha.pdf and b/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_by_alpha.pdf differ diff --git a/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_preservation_grid.pdf b/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_preservation_grid.pdf index c02bdf9..4b09a6b 100644 Binary files a/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_preservation_grid.pdf and b/paper/src/chapters/figures/results/generated/final/plots/final_focus_coi_preservation_grid.pdf differ diff --git a/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_by_alpha.pdf b/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_by_alpha.pdf index 61c028f..162eddf 100644 Binary files a/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_by_alpha.pdf and b/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_by_alpha.pdf differ diff --git a/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_delta.pdf b/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_delta.pdf index b5b945d..9083163 100644 Binary files a/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_delta.pdf and b/paper/src/chapters/figures/results/generated/final/plots/final_focus_revenue_delta.pdf differ diff --git a/paper/src/chapters/figures/results/generated/final/plots/final_focus_risk_deltas.pdf b/paper/src/chapters/figures/results/generated/final/plots/final_focus_risk_deltas.pdf index 9e5a543..2a48736 100644 Binary files a/paper/src/chapters/figures/results/generated/final/plots/final_focus_risk_deltas.pdf and b/paper/src/chapters/figures/results/generated/final/plots/final_focus_risk_deltas.pdf differ diff --git a/paper/src/chapters/figures/results/process_final_sweeps.py b/paper/src/chapters/figures/results/process_final_sweeps.py index 550eb8a..57254c5 100644 --- a/paper/src/chapters/figures/results/process_final_sweeps.py +++ b/paper/src/chapters/figures/results/process_final_sweeps.py @@ -332,7 +332,6 @@ def _plot_focus_revenue_by_alpha(alpha_mode: pd.DataFrame, out_path: Path) -> Pa color=color, label=label, ) - ax.axvline(0.7, color="#666666", linewidth=1.0, linestyle="--") ax.set_xlabel(r"Contamination $\alpha$") ax.set_ylabel("Mean episode revenue") ax.set_title("Final Cohort Revenue Curves") @@ -392,7 +391,6 @@ def _plot_focus_coi_by_alpha(alpha_mode: pd.DataFrame, out_path: Path) -> Path: label="Gap", ) - ax.axvline(0.7, color="#666666", linewidth=1.0, linestyle="--") ax.set_xlabel(r"Contamination $\alpha$") ax.set_ylabel("Mean COI level") ax.set_title("Final Cohort COI Curves") @@ -489,7 +487,6 @@ def _plot_focus_revenue_delta(alpha_deltas: pd.DataFrame, out_path: Path) -> Pat ax.plot(x, y, marker="o", linewidth=2.0, markersize=4, color="#C44E52") ax.fill_between(x, y, 0.0, color="#C44E52", alpha=0.12) ax.axhline(0.0, color="#444444", linewidth=1.0, linestyle="--") - ax.axvline(0.7, color="#666666", linewidth=1.0, linestyle="--") high = alpha_deltas[alpha_deltas["alpha"] >= 0.7] if not high.empty: best = high.reindex( @@ -537,7 +534,6 @@ def _plot_focus_risk_deltas(alpha_deltas: pd.DataFrame, out_path: Path) -> Path: label="Volatility delta", ) ax.axhline(0.0, color="#444444", linewidth=1.0, linestyle="--") - ax.axvline(0.7, color="#666666", linewidth=1.0, linestyle="--") ax.set_xlabel(r"Contamination $\alpha$") ax.set_ylabel("Defended minus baseline") ax.set_title("Leakage and Stability Deltas (Final Cohort)")