File size: 8,496 Bytes
141a818 | 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 | """
plot_curves.py โ ไป TensorBoard event ๆไปถ็ๆๅฏนๆฏๅพ
็จๆณ๏ผpython src/plot_curves.py
่พๅบ๏ผdocs/assets/round2/ ๅ docs/assets/compare/ ไธ็ PNG ๆไปถ
"""
import os
import numpy as np
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
from tensorboard.backend.event_processing import event_accumulator
# โโ ้
็ฝฎ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
RUNS = {
"Round1\n(ฮต_decay=0.995, ep=2000)": "runs/Round1_double_epsilon0.995_ep2000",
"Round2\n(ฮต_decay=0.9985, ep=6000)": "runs/Round2_double_epsilon0.9985_ep6000",
}
COLORS = {
"Round1\n(ฮต_decay=0.995, ep=2000)": "#E07B39", # ๆฉ
"Round2\n(ฮต_decay=0.9985, ep=6000)": "#4878CF", # ่
}
OUT_CMP = "docs/assets/compare"
OUT_R2 = "docs/assets/round2"
os.makedirs(OUT_CMP, exist_ok=True)
os.makedirs(OUT_R2, exist_ok=True)
# โโ ่ฏปๅ event ๆไปถ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def load(run_path: str, tag: str):
ea = event_accumulator.EventAccumulator(
run_path, size_guidance={event_accumulator.SCALARS: 0}
)
ea.Reload()
events = ea.Scalars(tag)
steps = np.array([e.step for e in events])
values = np.array([e.value for e in events])
return steps, values
def smooth(values, weight=0.6):
"""ๆๆฐ็งปๅจๅนณๅๅนณๆป"""
s, out = values[0], []
for v in values:
s = weight * s + (1 - weight) * v
out.append(s)
return np.array(out)
# โโ ้็จ็ปๅพๅฝๆฐ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def plot_compare(tag, ylabel, title, filename,
run_keys=None, ylim=None, smooth_w=0.0,
hlines=None, outdir=OUT_CMP):
"""็ปๅถๅคๆกๆฒ็บฟๅฏนๆฏๅพ"""
fig, ax = plt.subplots(figsize=(10, 5))
keys = run_keys or list(RUNS.keys())
for label in keys:
path = RUNS[label]
try:
steps, vals = load(path, tag)
except Exception as e:
print(f" [SKIP] {label}: {e}")
continue
if smooth_w > 0:
vals = smooth(vals, smooth_w)
ax.plot(steps, vals, label=label, color=COLORS[label],
linewidth=1.8, alpha=0.9)
if hlines:
for y, color, text in hlines:
ax.axhline(y, color=color, linestyle="--", linewidth=1.2, alpha=0.7)
ax.text(ax.get_xlim()[1] if ax.get_xlim()[1] > 0 else 6000,
y + 0.5, text, color=color, fontsize=9, va="bottom")
ax.set_xlabel("Episode", fontsize=12)
ax.set_ylabel(ylabel, fontsize=12)
ax.set_title(title, fontsize=13, fontweight="bold")
if ylim:
ax.set_ylim(ylim)
ax.legend(fontsize=10, loc="lower right")
ax.grid(True, alpha=0.3)
fig.tight_layout()
out_path = os.path.join(outdir, filename)
fig.savefig(out_path, dpi=150)
plt.close(fig)
print(f" โ
{out_path}")
# โโ 1. ๅฏนๆฏๅพ๏ผTest_Success_Rate R1 vs R2 โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
print("็ๆๅฏนๆฏๅพ...")
plot_compare(
tag="Evaluation_Exam/Test_Success_Rate",
ylabel="Blind Test Success Rate",
title="Evaluation: Test Success Rate โ Round 1 vs Round 2",
filename="cmp_eval_success_rate_r1_vs_r2.png",
ylim=(0, 100),
smooth_w=0.0,
hlines=[(74, "#4878CF", "R2 ๅณฐๅผ 74%"), (54, "#E07B39", "R1 ๅณฐๅผ 54%")],
)
# โโ 2. ๅฏนๆฏๅพ๏ผGlobal_Epsilon R1 vs R2 โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
plot_compare(
tag="Frontend_Env/Global_Epsilon",
ylabel="ฮต (Epsilon)",
title="Exploration Decay โ Round 1 vs Round 2",
filename="cmp_frontend_epsilon_r1_vs_r2.png",
ylim=(0, 1.05),
smooth_w=0.0,
hlines=[(0.05, "gray", "ฮต_min=0.05")],
)
# โโ 3. R2 ๅ็ฌ๏ผTest_Success_Rate โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
print("็ๆ Round 2 ๅ็ฌๅพ...")
R2_KEY = "Round2\n(ฮต_decay=0.9985, ep=6000)"
def plot_single(tag, ylabel, title, filename, ylim=None, smooth_w=0.0,
hlines=None, vlines=None, outdir=OUT_R2):
fig, ax = plt.subplots(figsize=(10, 5))
steps, vals = load(RUNS[R2_KEY], tag)
color = COLORS[R2_KEY]
if smooth_w > 0:
ax.plot(steps, vals, color=color, alpha=0.25, linewidth=1.0)
ax.plot(steps, smooth(vals, smooth_w), color=color,
linewidth=2.0, label="Round 2๏ผๅนณๆป๏ผ")
else:
ax.plot(steps, vals, color=color, linewidth=1.8,
label="Round 2\n(ฮต_decay=0.9985, ep=6000)")
if hlines:
for y, c, text in hlines:
ax.axhline(y, color=c, linestyle="--", linewidth=1.2, alpha=0.7)
ax.text(6100, y + 0.5, text, color=c, fontsize=9, va="bottom")
if vlines:
for x, c, text in vlines:
ax.axvline(x, color=c, linestyle=":", linewidth=1.2, alpha=0.8)
ax.text(x + 30, ax.get_ylim()[0] + 2 if ylim is None else ylim[0] + 2,
text, color=c, fontsize=8, rotation=90, va="bottom")
ax.set_xlabel("Episode", fontsize=12)
ax.set_ylabel(ylabel, fontsize=12)
ax.set_title(title, fontsize=13, fontweight="bold")
if ylim:
ax.set_ylim(ylim)
ax.legend(fontsize=10, loc="lower right")
ax.grid(True, alpha=0.3)
fig.tight_layout()
out_path = os.path.join(outdir, filename)
fig.savefig(out_path, dpi=150)
plt.close(fig)
print(f" โ
{out_path}")
plot_single(
tag="Evaluation_Exam/Test_Success_Rate",
ylabel="Blind Test Success Rate (%)",
title="Round 2: Blind Test Success Rate๏ผๅ
จ็จๆฏ่ก๏ผๆ ๆถๆๅนณๅฐ๏ผ",
filename="r2_eval_success_rate.png",
ylim=(0, 100),
hlines=[(74, "#2ca02c", "ๅณฐๅผ 74%๏ผep=3300, ep=4250๏ผ"),
(52, "#d62728", "ไฝ่ฐท 52%๏ผep=5300, ep=5900๏ผ")],
vlines=[(3300, "#2ca02c", "ep=3300"), (4250, "#2ca02c", "ep=4250"),
(2189, "#9467bd", "ฮต่งฆๅบ epโ2189")],
)
# โโ 4. R2 ๅ็ฌ๏ผSPL โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
plot_single(
tag="Evaluation_Exam/SPL",
ylabel="SPL",
title="Round 2: SPL๏ผSuccess-weighted Path Length๏ผ",
filename="r2_eval_spl.png",
ylim=(0, 1.0),
)
# โโ 5. R2 ๅ็ฌ๏ผGlobal_Epsilon โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
plot_single(
tag="Frontend_Env/Global_Epsilon",
ylabel="ฮต (Epsilon)",
title="Round 2: Exploration Decay๏ผepโ2189 ่งฆๅบ๏ผ",
filename="r2_frontend_epsilon.png",
ylim=(0, 1.05),
hlines=[(0.05, "gray", "ฮต_min=0.05")],
vlines=[(2189, "#9467bd", "ฮต่งฆๅบ epโ2189")],
)
# โโ 6. R2 ๅ็ฌ๏ผAvg_Reward_Window โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
plot_single(
tag="Frontend_Env/Avg_Reward_Window",
ylabel="Avg Reward (rolling 100 ep)",
title="Round 2: Rolling Average Reward",
filename="r2_frontend_avg_reward.png",
smooth_w=0.7,
)
# โโ 7. R2 ๅ็ฌ๏ผLoss โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
plot_single(
tag="Backend_Net/Loss",
ylabel="TD Loss",
title="Round 2: Training Loss",
filename="r2_backend_loss.png",
smooth_w=0.85,
)
# โโ 8. R2 ๅ็ฌ๏ผAvg_Q_Value โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
plot_single(
tag="Backend_Net/Avg_Q_Value",
ylabel="Avg Q Value",
title="Round 2: Average Q Value",
filename="r2_backend_avg_q.png",
smooth_w=0.7,
)
print("\nๅ
จ้จๅฎๆ๏ผ")
|