Skip to content

Commit

Permalink
Hopefully more compact keys for known seeds
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Nov 6, 2024
1 parent 4ecdb5c commit df92705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks_jason/max_of_K_all_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -3266,7 +3266,7 @@ def do_linear_regression(X, Y):
]
print(f"len after: {len(df)}")

sorted_known_seeds = tuple(sorted(df["seed"].values))
sorted_known_seeds = np.unique(np.array(df["seed"].values), return_counts=True)
# Group by 'attention_error_handling' and calculate the max 'normalized-accuracy-bound' for sorting groups
df = df[
[
Expand Down

0 comments on commit df92705

Please sign in to comment.