We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa84935 commit 32f1376Copy full SHA for 32f1376
libmultilabel/linear/utils.py
@@ -67,13 +67,13 @@ class MultiLabelEstimator(sklearn.base.BaseEstimator):
67
"""Customized sklearn estimator for the multi-label classifier.
68
69
Args:
70
- options (str, optional): The option string passed to liblinear. Defaults to '-s 2'.
+ options (str, optional): The option string passed to liblinear. Defaults to ''.
71
linear_technique (str, optional): Multi-label technique defined in `utils.LINEAR_TECHNIQUES`.
72
Defaults to '1vsrest'.
73
scoring_metric (str, optional): The scoring metric. Defaults to 'P@1'.
74
"""
75
76
- def __init__(self, options: str = '-s 2',
+ def __init__(self, options: str = '',
77
linear_technique: str = '1vsrest',
78
scoring_metric: str = 'P@1'
79
):
0 commit comments