Reputation: 3378
I'd like to build a one-class classification (OCC) model using the H2O package either for Python or R but I couldn't find any reference on the internet. So I wonder, does H2O support one-class classification? If it does, could someone here help me to give an example code to do it using the Setosa class from the Iris Dataset and then test it to predict the other classes?
Upvotes: 1
Views: 249
Reputation: 123
In python you can use the One-Class Support Vector Machine implementation in scikit-learn:
https://scikit-learn.org/stable/modules/generated/sklearn.svm.OneClassSVM.html
Upvotes: 0