Skip to content

Commit

Permalink
feat: visualise GPT-4 results
Browse files Browse the repository at this point in the history
  • Loading branch information
DriesSmit committed May 24, 2024
1 parent 5d6175b commit a384f98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/visualise_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ def get_scatter_plot(metrics, runs_table_df, legend=True, dataset="", save_path=
data=runs_table_df_plot,
)
plt.xscale("log")
plt.xlabel(f"{metrics}")
plt.xlabel(f"{metrics} (Log Scale)")
plt.ylabel(f"{dataset} Accuracy (out of 1.0)")
if legend:
plt.legend(bbox_to_anchor=(1.05, 1), loc="upper left")
Expand Down
2 changes: 1 addition & 1 deletion scripts/vizualize_results_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@

print(f"Number of runs: {len(run_table)}")

get_scatter_plot(METRIC+" Log Scale", run_table, LEGEND, DATASET, save_path=SAVE_PATH)
get_scatter_plot(METRIC, run_table, LEGEND, DATASET, save_path=SAVE_PATH)

0 comments on commit a384f98

Please sign in to comment.