Skip to content

Commit

Permalink
fix: remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Oct 17, 2024
1 parent c95ef39 commit a845535
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions openml/evaluations/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,12 +461,10 @@ def list_evaluations_setups(
)
else:
parameters.append({})
print(parameters) # noqa: T201
setup_data["parameters"] = parameters
# Merge setups with evaluations
_df = evals.merge(setup_data, on="setup_id", how="left")

print(_df) # noqa: T201
if parameters_in_separate_columns:
_df = pd.concat(
[_df.drop("parameters", axis=1), _df["parameters"].apply(pd.Series)],
Expand Down

0 comments on commit a845535

Please sign in to comment.