Skip to content

Commit 3a88afd

Browse files
committed
remove print statements
1 parent 2700fc3 commit 3a88afd

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

scoring/performance_profile.py

-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ def compute_performance_profiles(results,
270270
df = pd.concat(dfs)
271271

272272
# Set score to inf if not within 4x of fastest submission
273-
df.describe()
274273
best_scores = df.min(axis=0)
275274
df[df.apply(lambda x: x > 4 * best_scores, axis=1)] = np.inf
276275

scoring/score_submissions.py

-2
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ def main(_):
101101
'of studies. Your score may not be an accurate representation '
102102
'under competition scoring rules. To enforce the criteria set strict=True.'
103103
)
104-
df = results['external_tuning']
105-
print(df.describe())
106104
if FLAGS.compute_performance_profiles:
107105
performance_profile_df = performance_profile.compute_performance_profiles(
108106
results,

scoring/test_scoring_utils.py

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def test_get_trials_df(self):
2828

2929
def test_get_experiment_df(self):
3030
df = scoring_utils.get_experiment_df(TEST_DIR)
31-
print(df)
3231
assert df is not None
3332

3433

0 commit comments

Comments
 (0)