sklearn.svm.libsvm.predict_proba()
Predict probabilities
svm_model stores all parameters needed to predict a given value.
For speed, all real work is done at the C level in function copy_predict (libsvm_helper.c).
We have to reconstruct model and parameters to make sure we stay in sync with the python object.
See sklearn.svm.predict for a complete list of parameters.
Parameters: |
X: array-like, dtype=float : kernel : {‘linear’, ‘rbf’, ‘poly’, ‘sigmoid’, ‘precomputed’} |
---|---|
Returns: |
dec_values : array predicted values. |
© 2007–2016 The scikit-learn developers
Licensed under the 3-clause BSD License.
http://scikit-learn.org/stable/modules/generated/sklearn.svm.libsvm.predict_proba.html