Skip to content

Commit be2a15b

Browse files
change order of plots
1 parent 3b2cb56 commit be2a15b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

scripts/plotting/plot_vlm_pred_invent_results.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'EXPERIMENT_ID': [
1414
'VLM feat. pred', 'Ours', 'No feat.', 'No invent',
1515
'No subselect', 'No visual', 'VLM subselect',
16-
'ViLa', 'ViLa fewshot', 'No noise tol.'
16+
'ViLa', 'ViLa fewshot'
1717
],
1818
'NUM_SOLVED': [0.00, 8.20, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 3.80],
1919
'NUM_SOLVED_STDDEV': [0.00, 1.17, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.40]
@@ -45,8 +45,8 @@
4545
'No subselect', 'No visual', 'VLM subselect',
4646
'ViLa', 'ViLa fewshot'
4747
],
48-
'NUM_SOLVED': [0.00, 9.80, 9.80, 0.00, 0.00, 9.80, 1.00, 6.60, 10.00],
49-
'NUM_SOLVED_STDDEV': [0.00, 0.40, 0.40, 0.00, 0.00, 0.40, 2.00, 1.02, 0.00]
48+
'NUM_SOLVED': [9.60, 9.80, 9.80, 0.00, 0.00, 9.80, 1.00, 6.60, 10.00],
49+
'NUM_SOLVED_STDDEV': [0.49, 0.40, 0.40, 0.00, 0.00, 0.40, 2.00, 1.02, 0.00]
5050
}
5151

5252
# Convert each dataset to a DataFrame
@@ -78,8 +78,8 @@
7878
unique_palette = sns.color_palette("pastel", n_colors=len(df_combo_burger))
7979

8080
# Plot in the new order: 'Boil Kettle', 'More Stacks', 'Bigger Burger', then 'Combo Burger'
81-
environments = [df_kitchen_boil_kettle, df_more_stacks, df_fatter_burger, df_combo_burger]
82-
titles = ["Kitchen Boil Kettle", "More Burger Stacks", "Bigger Burger", "Combo Burger"]
81+
environments = [df_kitchen_boil_kettle, df_fatter_burger, df_more_stacks, df_combo_burger]
82+
titles = ["Kitchen Boil Kettle", "Bigger Burger", "More Burger Stacks", "Combo Burger"]
8383

8484
for i, (df, title) in enumerate(zip(environments, titles)):
8585
sns.barplot(

0 commit comments

Comments
 (0)