Skip to content

Commit 32f1376

Browse files
committed
removed default -s 2
1 parent aa84935 commit 32f1376

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libmultilabel/linear/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ class MultiLabelEstimator(sklearn.base.BaseEstimator):
6767
"""Customized sklearn estimator for the multi-label classifier.
6868
6969
Args:
70-
options (str, optional): The option string passed to liblinear. Defaults to '-s 2'.
70+
options (str, optional): The option string passed to liblinear. Defaults to ''.
7171
linear_technique (str, optional): Multi-label technique defined in `utils.LINEAR_TECHNIQUES`.
7272
Defaults to '1vsrest'.
7373
scoring_metric (str, optional): The scoring metric. Defaults to 'P@1'.
7474
"""
7575

76-
def __init__(self, options: str = '-s 2',
76+
def __init__(self, options: str = '',
7777
linear_technique: str = '1vsrest',
7878
scoring_metric: str = 'P@1'
7979
):

0 commit comments

Comments
 (0)