Semi-Supervised Learning

 

When we have many instances, but only a small amount is labeled, we wish to train a suitable model based on “good” instances.

This is a common task because most real-world data is not entirely labeled [5].

A good example of a semi-supervised process is active learning when a model is trained interactively with expert labeling as follows:

  1. Collect an unlabeled dataset
  2. Generate “interesting” instances
    • Outlier instances might be interesting and have different labels from normal cases
    • clusters will help us to divide the instances into groups, if the clusters are good they might have cases with various labels (not necessarily). To construct the “interesting” instances group, we can randomly choose a few cases from each cluster.
  3. Domain expert labels the “interesting” cases.
  4. Train a supervised model on labeled instances.
  5. Classify the entire data with the supervised model.
  6. Continue with the following actions:
    • From the classified instances, we take the “uncertain” cases with a low confidence level and continue to Step 3.
    • Perform Step 2 and find new types of labels.
active learning flow (example)

Leave a Reply

Your email address will not be published. Required fields are marked *