Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

One Class Classification Models in Spark

Are there any implementations of One class classifiers in the Spark?

There doesn't appear to be anything in ML or MLlib, but I was hoping that there was an extension developed by someone in the community that would provide some way of producing a trained classification model where only one labeled class is available in the training data.

like image 465
DavidWayne Avatar asked Aug 24 '26 02:08

DavidWayne


1 Answers

It's Java, not Spark, but LibSVM has a one class SVM classifer, and calling it from Spark shouldn't be a problem.

like image 73
Eyal Avatar answered Aug 27 '26 00:08

Eyal