AIExplainer
Machine Learning Beginner 1 min read

What is a co-training?

A semi-supervised learning approach particularly useful when all of the following conditions are true: - The ratio of unlabeled examples to labeled examples in the dataset is high.

A semi-supervised learning approach particularly useful when all of the following conditions are true: - The ratio of unlabeled examples to labeled examples in the dataset is high. - This is a classification problem (binary or multi-class). - The dataset contains two different sets of predictive features that are independent of each other and complementary. Co-training essentially amplifies independent signals into a stronger signal. For example, consider a classification model that categorizes individual used cars as either Good or Bad. One set of predictive features might focus on aggregate characteristics such as the year, make, and model of the car; another set of predictive features might focus on the previous owner's driving record and the car's maintenance history. The seminal paper on co-training is Combining Labeled and Unlabeled Data with Co-Training by Blum and Mitchell.

Practitioners refer to co-training when building, training, or evaluating machine learning systems. It appears in research papers, product documentation, and technical discussions about AI capabilities and limitations.