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?
Asked
Active
Viewed 185 times
1 Answers
0
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

maz
- 143
- 8
-
Thanks for the answer but I'm only interested in using the H2O package. – Anastasiya-Romanova 秀 May 12 '20 at 13:15