Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Incremental SVM With Probability Estimates

Tags:

python

svm

Is there any implementation of incremental svm which also has the feature of returning the probability of a given feature vector belonging to the various classes? Preferably usable with python code

I have heard about LaSVM. Does LaSVM has a feature of returning probability estimates? Also does it have features for handling imbalance training datasets?

like image 333
user2115183 Avatar asked Jul 30 '26 00:07

user2115183


1 Answers

You can have a look in Scikit Learn, a very flexible and efficient library written in Python

In every model, there are stored the internal calculated values. If clf is your SVM classifier, you can access clf.decision_function to see some explanation of the predictions.

It also provides a good set of tools for preprocessing data among other things you can find interesting.

cheers,

like image 132
Luchux Avatar answered Jul 31 '26 16:07

Luchux



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!