Also known as: Co training
Совместное обучение — semi-supervised метод обучения, который обучает модели с использованием взаимодополняющих и условно независимых представлений данных. Он полезен, когда размеченных примеров мало, а неразмеченных много, позволяя моделям усиливать предсказания друг друга.
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.