Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reduce the amount of verified runs
Downloading a run takes a non-significant amount of time (est. 300ms on
my current setup). It is unnecessary to compare against all >=100 runs,
while a handful should do fine (perhaps even just one should do).
  • Loading branch information
PGijsbers committed Oct 27, 2020
commit bfb53048a07490095c61af035d1125fdb21bb242
2 changes: 1 addition & 1 deletion tests/test_evaluations/test_evaluation_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _check_list_evaluation_setups(self, **kwargs):
# Check if output and order of list_evaluations is preserved
self.assertSequenceEqual(evals_setups["run_id"].tolist(), evals["run_id"].tolist())
# Check if the hyper-parameter column is as accurate and flow_id
for index, row in evals_setups.iterrows():
for index, row in evals_setups.head(3).iterrows():
Comment thread
PGijsbers marked this conversation as resolved.
Outdated
params = openml.runs.get_run(row["run_id"]).parameter_settings
list1 = [param["oml:value"] for param in params]
list2 = list(row["parameters"].values())
Expand Down