Skip to content

Commit 4ff2186

Browse files
andre15silvaclaude
andcommitted
fix(paper): shorten dataset stats table column names and model names
- >=15 / >=50 columns drop "#Traj.\" prefix - Model names abbreviated: Laguna-XS.2 -> Laguna, Qwen3.6-35B-A3B -> Qwen3.6 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 8a2301a commit 4ff2186

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

run_paper_figures.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ def build_dataset_stats_table(
12681268
r"\label{tab:dataset_stats}" "\n"
12691269
r"\begin{tabular}{llrrrr}" "\n"
12701270
r"\toprule" "\n"
1271-
r"Model & Dataset & \#Traj. & \#Traj.\ $\geq$15 & \#Traj.\ $\geq$50 & \#Tokens \\" "\n"
1271+
r"Model & Dataset & \#Traj. & $\geq$15 & $\geq$50 & \#Tokens \\" "\n"
12721272
r"\midrule" "\n"
12731273
)
12741274
# Configs are ordered: (model A, Verified), (model A, Pro), (model B, Verified), ...
@@ -1278,7 +1278,8 @@ def build_dataset_stats_table(
12781278
while i < len(configs):
12791279
group = configs[i:i + 2] # pair of rows for the same model
12801280
model_label = group[0]["model_label"]
1281-
model_cell = r"\multirow{2}{*}{\texttt{" + model_label + r"}}"
1281+
model_short = model_label.split("-")[0] # "Laguna-XS.2" → "Laguna", "Qwen3.6-35B-A3B" → "Qwen3.6"
1282+
model_cell = r"\multirow{2}{*}{\texttt{" + model_short + r"}}"
12821283
first_in_group = True
12831284
for cfg in group:
12841285
ds_short = "Verified" if cfg["dataset_label"] == "Verified" else "Pro"

0 commit comments

Comments
 (0)