-
-
Notifications
You must be signed in to change notification settings - Fork 26.2k
fix default value for class LinearSVC #16077
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -26,28 +26,28 @@ class LinearSVC(BaseEstimator, LinearClassifierMixin, | |||||
|
||||||
Parameters | ||||||
---------- | ||||||
penalty : str, 'l1' or 'l2' (default='l2') | ||||||
penalty : str, 'l1' or 'l2' default='l2' | ||||||
Specifies the norm used in the penalization. The 'l2' | ||||||
penalty is the standard used in SVC. The 'l1' leads to ``coef_`` | ||||||
vectors that are sparse. | ||||||
|
||||||
loss : str, 'hinge' or 'squared_hinge' (default='squared_hinge') | ||||||
loss : str, 'hinge' or 'squared_hinge', default='squared_hinge' | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
Specifies the loss function. 'hinge' is the standard SVM loss | ||||||
(used e.g. by the SVC class) while 'squared_hinge' is the | ||||||
square of the hinge loss. | ||||||
|
||||||
dual : bool, (default=True) | ||||||
dual : bool, default=True | ||||||
Select the algorithm to either solve the dual or primal | ||||||
optimization problem. Prefer dual=False when n_samples > n_features. | ||||||
|
||||||
tol : float, optional (default=1e-4) | ||||||
tol : float, default=1e-4 | ||||||
Tolerance for stopping criteria. | ||||||
|
||||||
C : float, optional (default=1.0) | ||||||
C : float, default=1.0 | ||||||
Regularization parameter. The strength of the regularization is | ||||||
inversely proportional to C. Must be strictly positive. | ||||||
|
||||||
multi_class : str, 'ovr' or 'crammer_singer' (default='ovr') | ||||||
multi_class : str, 'ovr' or 'crammer_singer',default='ovr' | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
Determines the multi-class strategy if `y` contains more than | ||||||
two classes. | ||||||
``"ovr"`` trains n_classes one-vs-rest classifiers, while | ||||||
|
@@ -58,12 +58,12 @@ class LinearSVC(BaseEstimator, LinearClassifierMixin, | |||||
If ``"crammer_singer"`` is chosen, the options loss, penalty and dual | ||||||
will be ignored. | ||||||
|
||||||
fit_intercept : bool, optional (default=True) | ||||||
fit_intercept : bool, default=True | ||||||
Whether to calculate the intercept for this model. If set | ||||||
to false, no intercept will be used in calculations | ||||||
(i.e. data is expected to be already centered). | ||||||
|
||||||
intercept_scaling : float, optional (default=1) | ||||||
intercept_scaling : float, default=1 | ||||||
When self.fit_intercept is True, instance vector x becomes | ||||||
``[x, self.intercept_scaling]``, | ||||||
i.e. a "synthetic" feature with constant value equals to | ||||||
|
@@ -74,20 +74,20 @@ class LinearSVC(BaseEstimator, LinearClassifierMixin, | |||||
To lessen the effect of regularization on synthetic feature weight | ||||||
(and therefore on the intercept) intercept_scaling has to be increased. | ||||||
|
||||||
class_weight : {dict, 'balanced'}, optional | ||||||
class_weight : {dict, 'balanced'}, default=1 | ||||||
Set the parameter C of class i to ``class_weight[i]*C`` for | ||||||
SVC. If not given, all classes are supposed to have | ||||||
weight one. | ||||||
The "balanced" mode uses the values of y to automatically adjust | ||||||
weights inversely proportional to class frequencies in the input data | ||||||
as ``n_samples / (n_classes * np.bincount(y))``. | ||||||
|
||||||
verbose : int, (default=0) | ||||||
verbose : int, default=0 | ||||||
Enable verbose output. Note that this setting takes advantage of a | ||||||
per-process runtime setting in liblinear that, if enabled, may not work | ||||||
properly in a multithreaded context. | ||||||
|
||||||
random_state : int, RandomState instance or None, optional (default=None) | ||||||
random_state : int, RandomState instance or None, default=None | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
The seed of the pseudo random number generator to use when shuffling | ||||||
the data for the dual coordinate descent (if ``dual=True``). When | ||||||
``dual=False`` the underlying implementation of :class:`LinearSVC` | ||||||
|
@@ -97,7 +97,7 @@ class LinearSVC(BaseEstimator, LinearClassifierMixin, | |||||
None, the random number generator is the RandomState instance used by | ||||||
`np.random`. | ||||||
|
||||||
max_iter : int, (default=1000) | ||||||
max_iter : int, default=1000 | ||||||
The maximum number of iterations to be run. | ||||||
|
||||||
Attributes | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.