Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove/clarify some (forgotten) prints #3379

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def test_search_space_analysis(self) -> None:
self.assertEqual(card.level, AnalysisCardLevel.LOW)
self.assertEqual(card.name, "SearchSpaceAnalysis")
self.assertEqual(card.title, "Ax Search Space Analysis Warning")
print(card.subtitle)
subtitle = (
"\n - Parameter x1 values are at their lower bound in 66.67% of all "
"suggested parameters, which exceeds the threshold of 50.00%. "
Expand Down
2 changes: 0 additions & 2 deletions ax/core/tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,6 @@ def test_GetFilteredResults(self) -> None:
]
)
).df
print(actual_filtered)
print(expected_filtered)
self.assertTrue(actual_filtered.equals(expected_filtered))

def test_data_column_data_types_default(self) -> None:
Expand Down
1 change: 0 additions & 1 deletion ax/service/tests/test_report_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ def test_exp_to_df_relative_metrics(self) -> None:
exp.trials[0].run()
exp.fetch_data()
relative_df = exp_to_df(exp=exp, show_relative_metrics=True)
print(relative_df)
self.assertTrue(f"{OBJECTIVE_NAME}_%CH" in relative_df.columns.tolist())
self.assertEqual(relative_df[f"{OBJECTIVE_NAME}_%CH"].values[0], 0.0)

Expand Down