This commit is contained in:
2026-02-22 23:52:26 +01:00
parent 61edb35f70
commit a7efed86f9
16 changed files with 1994 additions and 6420 deletions

View File

@@ -5,7 +5,7 @@ import matplotlib.pyplot as plt
with open("output/autotune.json", "r") as f:
history = json.load(f)
history = sorted(history, key=lambda x: x["metrics"]["combined_score"], reverse=False)
history = sorted(history, key=lambda x: x["metrics"]["combined_score"], reverse=True)
with open("output/autotune_sorted.json", "w") as f:
json.dump(history, f, indent=2)