Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cost sensitive analysis in scikit-learn

Tags:

scikit-learn

Is there a scikit-learn method/class analogous to the MetaCost algorithm implemented in Weka or other utilities to perform const sensitive analysis ?

like image 733
Nikos Athanasiou Avatar asked Mar 20 '14 17:03

Nikos Athanasiou


Video Answer


1 Answers

No, there isn't. Some classifiers offer class_weight and sample_weight parameters, but those are just optimized implementations over oversampling and undersampling, not MetaCost.

like image 174
Fred Foo Avatar answered Oct 10 '22 06:10

Fred Foo