Options

Semi-Supervised classification

gianvitogianvito Member Posts: 1 Contributor I
edited August 2019 in Help
Hi all,
  I would like to build a classifier which learns from only a set of positive examples and a set of unlabeled examples.

This classifier, when predicting on new instances, should also output a probability value for positive and negative class (as, for example, Logistic Regression).

Any suggestion about it? Is there a semi-supervised classifier in RapidMiner?

Thank you



Tagged:

Answers

  • Options
    wesselwessel Member Posts: 537 Maven
    Hey,

    You could use classification via clustering.
    For performance, you count how many positive examples are clustered around positive centroids.
    Beware, it can be quite tricky to come up with a good performance measure.

    Alternatively, you can generate a set of negatively labeled examples.
    For example, simply set all your unlabeled examples to negative.
    Then you can build any classifier in the standard way.
    Hopefully you can use the model to filter back out some wrongly labeled examples.
    For example, if you use boosting, after each round of boosting more 'difficult' examples will gain more weight.
    So you can look at examples that gain a lot of weight, these are likely to be wrongly labeled.

    Best regards,

    Wessel
Sign In or Register to comment.