diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-04-08 14:35:20 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-04-08 14:35:20 -0500 |
| commit | 1c4672e465b9145d71cfddeae4e2ebaeeef2964f (patch) | |
| tree | a9a1eab21bed0ae00da714fd09398a23ad2a01a6 /paper/figures | |
| parent | 528a240f4d8288ad626781ac86e4f0c8941cfe76 (diff) | |
Figures 3 and 4: fix aspect ratio (fig3 was squeezed strip) and key-finding label overlap (fig4)
Per user feedback:
- fig4_penalty_rescue.pdf (Figure 3 in paper): was figsize=(13, 3.5), aspect 3.7:1,
which rendered as a thin strip with squeezed subplot content. Increased height
to figsize=(13, 6.0), aspect 2.2:1. Much taller panels that actually show axis
labels and legends readably.
- fig5_cross_arch_summary.pdf (Figure 4 in paper): the 'Key finding' italic text
annotation at y=-1.0 in axes transform was overlapping with the multiline
architecture y-tick labels at the bottom of the second subplot. Moved to
y=-1.55 and increased figsize height from 3.5 to 4.2 so the lower annotation
still fits in bbox_inches='tight' crop.
- Also bumped includegraphics width from 0.92\linewidth to \linewidth for both
figures so they use the full text width.
Main content still exactly 9 pages within E&D budget.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'paper/figures')
| -rw-r--r-- | paper/figures/fig4_penalty_rescue.pdf | bin | 32527 -> 34190 bytes | |||
| -rw-r--r-- | paper/figures/fig5_cross_arch_summary.pdf | bin | 31765 -> 32029 bytes | |||
| -rw-r--r-- | paper/figures/render_fig4_penalty_rescue.py | 2 | ||||
| -rw-r--r-- | paper/figures/render_fig5_cross_arch.py | 6 |
4 files changed, 4 insertions, 4 deletions
diff --git a/paper/figures/fig4_penalty_rescue.pdf b/paper/figures/fig4_penalty_rescue.pdf Binary files differindex 0dcdce7..e703f08 100644 --- a/paper/figures/fig4_penalty_rescue.pdf +++ b/paper/figures/fig4_penalty_rescue.pdf diff --git a/paper/figures/fig5_cross_arch_summary.pdf b/paper/figures/fig5_cross_arch_summary.pdf Binary files differindex 93c0676..00267a7 100644 --- a/paper/figures/fig5_cross_arch_summary.pdf +++ b/paper/figures/fig5_cross_arch_summary.pdf diff --git a/paper/figures/render_fig4_penalty_rescue.py b/paper/figures/render_fig4_penalty_rescue.py index b7089ec..ad21a12 100644 --- a/paper/figures/render_fig4_penalty_rescue.py +++ b/paper/figures/render_fig4_penalty_rescue.py @@ -36,7 +36,7 @@ no_pen = [0.609, 0.308] with_pen = [0.530, 0.363] shallow = 0.349 -fig, axes = plt.subplots(1, 3, figsize=(13, 3.5)) +fig, axes = plt.subplots(1, 3, figsize=(13, 6.0)) # Panel A: trajectory ax = axes[0] diff --git a/paper/figures/render_fig5_cross_arch.py b/paper/figures/render_fig5_cross_arch.py index e163956..9ad9ce2 100644 --- a/paper/figures/render_fig5_cross_arch.py +++ b/paper/figures/render_fig5_cross_arch.py @@ -26,7 +26,7 @@ dfa = np.array([ bp = np.zeros_like(dfa) # BP: passes everywhere -fig, axes = plt.subplots(1, 2, figsize=(11, 3.5)) +fig, axes = plt.subplots(1, 2, figsize=(11, 4.2)) for ax, mat, title in [(axes[0], bp, "BP-trained: protocol passes"), (axes[1], dfa, "DFA-trained: protocol verdict by architecture")]: @@ -42,8 +42,8 @@ for ax, mat, title in [(axes[0], bp, "BP-trained: protocol passes"), ax.set_yticklabels(arches, fontsize=9) ax.set_title(title, fontsize=10) -# Highlight the key finding -axes[1].text(0.5, -1.0, "Key finding: diagnostic (b) BP-grad-floor fires only on terminal-LN architectures.\n" +# Highlight the key finding — place well below the multiline x/y tick labels to avoid overlap +axes[1].text(0.5, -1.55, "Key finding: diagnostic (b) BP-grad-floor fires only on terminal-LN architectures.\n" "Across the 5 architecture cases tested, (b) is restricted to the with-terminal-LN family.", ha="center", fontsize=9, style="italic", transform=axes[1].transAxes) |
