class sklearn.naive_bayes.ComplementNB(alpha=1.0, fit_prior=True, class_prior=None, norm=False)
[source]
The Complement Naive Bayes classifier described in Rennie et al. (2003).
The Complement Naive Bayes classifier was designed to correct the “severe assumptions” made by the standard Multinomial Naive Bayes classifier. It is particularly suited for imbalanced data sets.
Read more in the User Guide.
Parameters: |
|
---|---|
Attributes: |
|
Rennie, J. D., Shih, L., Teevan, J., & Karger, D. R. (2003). Tackling the poor assumptions of naive bayes text classifiers. In ICML (Vol. 3, pp. 616-623). http://people.csail.mit.edu/jrennie/papers/icml03-nb.pdf
>>> import numpy as np >>> X = np.random.randint(5, size=(6, 100)) >>> y = np.array([1, 2, 3, 4, 5, 6]) >>> from sklearn.naive_bayes import ComplementNB >>> clf = ComplementNB() >>> clf.fit(X, y) ComplementNB(alpha=1.0, class_prior=None, fit_prior=True, norm=False) >>> print(clf.predict(X[2:3])) [3]
fit (X, y[, sample_weight]) | Fit Naive Bayes classifier according to X, y |
get_params ([deep]) | Get parameters for this estimator. |
partial_fit (X, y[, classes, sample_weight]) | Incremental fit on a batch of samples. |
predict (X) | Perform classification on an array of test vectors X. |
predict_log_proba (X) | Return log-probability estimates for the test vector X. |
predict_proba (X) | Return probability estimates for the test vector X. |
score (X, y[, sample_weight]) | Returns the mean accuracy on the given test data and labels. |
set_params (**params) | Set the parameters of this estimator. |
__init__(alpha=1.0, fit_prior=True, class_prior=None, norm=False)
[source]
fit(X, y, sample_weight=None)
[source]
Fit Naive Bayes classifier according to X, y
Parameters: |
|
---|---|
Returns: |
|
get_params(deep=True)
[source]
Get parameters for this estimator.
Parameters: |
|
---|---|
Returns: |
|
partial_fit(X, y, classes=None, sample_weight=None)
[source]
Incremental fit on a batch of samples.
This method is expected to be called several times consecutively on different chunks of a dataset so as to implement out-of-core or online learning.
This is especially useful when the whole dataset is too big to fit in memory at once.
This method has some performance overhead hence it is better to call partial_fit on chunks of data that are as large as possible (as long as fitting in the memory budget) to hide the overhead.
Parameters: |
|
---|---|
Returns: |
|
predict(X)
[source]
Perform classification on an array of test vectors X.
Parameters: |
|
---|---|
Returns: |
|
predict_log_proba(X)
[source]
Return log-probability estimates for the test vector X.
Parameters: |
|
---|---|
Returns: |
|
predict_proba(X)
[source]
Return probability estimates for the test vector X.
Parameters: |
|
---|---|
Returns: |
|
score(X, y, sample_weight=None)
[source]
Returns the mean accuracy on the given test data and labels.
In multi-label classification, this is the subset accuracy which is a harsh metric since you require for each sample that each label set be correctly predicted.
Parameters: |
|
---|---|
Returns: |
|
set_params(**params)
[source]
Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as pipelines). The latter have parameters of the form <component>__<parameter>
so that it’s possible to update each component of a nested object.
Returns: |
|
---|
sklearn.naive_bayes.ComplementNB
© 2007–2018 The scikit-learn developers
Licensed under the 3-clause BSD License.
http://scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.ComplementNB.html