Skip to content

Commit

Permalink
Merge 98c73cb into a275763
Browse files Browse the repository at this point in the history
  • Loading branch information
rabsr authored Feb 15, 2021
2 parents a275763 + 98c73cb commit c10cbaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autosklearn/automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -1268,8 +1268,8 @@ def cv_results_(self):

results['mean_fit_time'] = np.array(mean_fit_time)
results['params'] = params
results['rank_test_scores'] = scipy.stats.rankdata(1 - results['mean_test_score'],
method='min')
rank_order = -1 * self._metric._sign * results['mean_test_score']
results['rank_test_scores'] = scipy.stats.rankdata(rank_order, method='min')
results['status'] = status
results['budgets'] = budgets

Expand Down

0 comments on commit c10cbaf

Please sign in to comment.