Is it possible to do one-class classification (wiki) with Microsoft ML.NET? I.e. in the training data set there is only one (the positive) class and I would like to tell if some test data belongs to this class or not. Can this be accomplished wiht ML.NET?
Pobably I can try with binary classification (although the prediction will always be classified as that class in the training data set) and inspect the score of the prediction, but this doesn't seem like a robust solution.
Thank you.