aboutsummaryrefslogtreecommitdiff
path: root/gensvm/gridsearch.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-06 16:06:17 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-06 16:06:17 +0000
commitaee92cf879fbd11975cca4b9cfd2cc110b6cb229 (patch)
treea1d14049cc7e2bc34362ab72a5748e37590db65e /gensvm/gridsearch.py
parentUpdate Makefile to current workflow (diff)
parentMerge branch 'master' into packaging (diff)
downloadpygensvm-aee92cf879fbd11975cca4b9cfd2cc110b6cb229.tar.gz
pygensvm-aee92cf879fbd11975cca4b9cfd2cc110b6cb229.zip
Merge branch 'packaging'
Diffstat (limited to 'gensvm/gridsearch.py')
-rw-r--r--gensvm/gridsearch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gensvm/gridsearch.py b/gensvm/gridsearch.py
index b27a347..22125a4 100644
--- a/gensvm/gridsearch.py
+++ b/gensvm/gridsearch.py
@@ -116,7 +116,7 @@ def _wrap_score(y_pred, y_true, scorers, is_multimetric):
results["score"] = np.nan
else:
estimator = _MockEstimator(y_pred)
- results = _score(estimator, None, y_true, scorers, is_multimetric)
+ results = _score(estimator, None, y_true, scorers)
score_time = time.time() - start_time
return results, score_time