Skip to content

Commit

Permalink
Plots many permutations
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawith committed Oct 21, 2025
1 parent 465dd25 commit fbdceb2
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions model_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,18 @@ def main():
metric_keys = ["test_accuracy", "test_loss"]
[hyperparam_keys.remove(key) for key in metric_keys]

for key in hyperparam_keys:
for metric_key in metric_keys:
plot.lineplot(
data=metric,
x=key,
y=metric_key,
)
for x_key in hyperparam_keys:
for hue_key in hyperparam_keys:
if x_key == hue_key:
continue
else:
for metric_key in metric_keys:
plot.lineplot(
data=metric,
x=x_key,
y=metric_key,
hue=hue_key,
)

if __name__ == "__main__":
main()
Expand Down

0 comments on commit fbdceb2

Please sign in to comment.