Domain adaptation

 Domain adaptation[1][2][3] is a field associated with machine learning and transfer learning. This scenario arises when we aim at learning from a source data distribution a well performing model on a different (but related) target data distribution. For instance, one of the tasks of the common spam filtering problem consists in adapting a model from one user (the source distribution) to a new user who receives significantly different emails (the target distribution). Domain adaptation has also been shown to be beneficial for learning unrelated sources.[4] Note that, when more than one source distribution is available the problem is referred to as multi-source domain adaptation.[5]

Distinction between usual machine learning setting and transfer learning, and positioning of domain adaptation.

OverviewEdit

Domain adaptation is the ability to apply an algorithm trained in one or more "source domains" to a different (but related) "target domain". Domain adaptation is a subcategory of transfer learning. In domain adaptation, the source and target domains all have the same feature space (but different distributions); in contrast, transfer learning includes cases where the target domain's feature space is different from the source feature space or spaces.[6]

Domain shiftEdit

domain shift,[7] or distributional shift,[8] is a change in the data distribution between an algorithm's training dataset, and a dataset it encounters when deployed. These domain shifts are common in practical applications of artificial intelligence. Conventional machine-learning algorithms often adapt poorly to domain shifts. The modern machine-learning community has many different strategies to attempt to gain better domain adaptation.[7]

ExamplesEdit

  • An algorithm trained on newswires might have to adapt to a new dataset of biomedical documents.[9]
  • A spam filter, trained on a certain group of email users during training, must adapt to a new target user when deployed.[10]
  • Applying AI diagnostic algorithms, trained on labeled data associated with previous diseases, to new unlabeled data associated with the COVID-19 pandemic.[11]
  • A sudden societal change, such as a pandemic outbreak, can constitute domain shift and cause machine learning algorithms trained on now-obsolete consumer data to fail and require intervention.[12][13]

Other applications include wifi localization detection and many aspects of computer vision.[6]

FormalizationEdit

Let X be the input space (or description space) and let Y be the output space (or label space). The objective of a machine learning algorithm is to learn a mathematical model (a hypothesis) h:X\to Y able to attach a label from Y to an example from X. This model is learned from a learning sample {\displaystyle S=\{(x_{i},y_{i})\in (X\times Y)\}_{i=1}^{m}}.

Usually in supervised learning (without domain adaptation), we suppose that the examples (x_{i},y_{i})\in S are drawn i.i.d. from a distribution D_{S} of support X\times Y (unknown and fixed). The objective is then to learn h (from S) such that it commits the least error possible for labelling new examples coming from the distribution D_{S}.

The main difference between supervised learning and domain adaptation is that in the latter situation we study two different (but related) distributions D_{S} and D_{T} on X\times Y[citation needed]. The domain adaptation task then consists of the transfer of knowledge from the source domain D_{S} to the target one D_{T}. The goal is then to learn h (from labeled or unlabelled samples coming from the two domains) such that it commits as little error as possible on the target domain D_{T}[citation needed].

The major issue is the following: if a model is learned from a source domain, what is its capacity to correctly label data coming from the target domain?

The different types of domain adaptationEdit

There are several contexts of domain adaptation. They differ in the information considered for the target task.

  1. The unsupervised domain adaptation: the learning sample contains a set of labeled source examples, a set of unlabeled source examples and a set of unlabeled target examples.
  2. The semi-supervised domain adaptation: in this situation, we also consider a "small" set of labeled target examples.
  3. The supervised domain adaptation: all the examples considered are supposed to be labeled.

Four algorithmic principlesEdit

Reweighting algorithmsEdit

The objective is to reweight the source labeled sample such that it "looks like" the target sample (in terms of the error measure considered).[14][15]

Iterative algorithmsEdit

A method for adapting consists in iteratively "auto-labeling" the target examples. The principle is simple:

  1. a model h is learned from the labeled examples;
  2. h automatically labels some target examples;
  3. a new model is learned from the new labeled examples.

Note that there exist other iterative approaches, but they usually need target labeled examples.[16][17]

Search of a common representation spaceEdit

The goal is to find or construct a common representation space for the two domains. The objective is to obtain a space in which the domains are close to each other while keeping good performances on the source labeling task. This can be achieved through the use of Adversarial machine learning techniques where feature representations from samples in different domains are encouraged to be indistinguishable.[18][19]

Hierarchical Bayesian ModelEdit

The goal is to construct a Bayesian hierarchical model p(n), which is essentially a factorization model for counts n, to derive domain-dependent latent representations allowing both domain-specific and globally shared latent factors.[4]

This article uses material from the Wikipedia article
 Metasyntactic variable, which is released under the 
Creative Commons
Attribution-ShareAlike 3.0 Unported License
.