Adaptive Instance Normalization is a normalization method that aligns the mean and variance of the content features with those of the style features.
Instance Normalization normalizes the input to a single style specified by the affine parameters. Adaptive Instance Normaliation is an extension. In AdaIN, we receive a content input $x$ and a style input $y$, and we simply align the channel-wise mean and variance of $x$ to match those of $y$. Unlike Batch Normalization, Instance Normalization or Conditional Instance Normalization, AdaIN has no learnable affine parameters. Instead, it adaptively computes the affine parameters from the style input:
$$ \textrm{AdaIN}(x, y)= \sigma(y)\left(\frac{x-\mu(x)}{\sigma(x)}\right)+\mu(y) $$
Source: Arbitrary Style Transfer in Real-time with Adaptive Instance NormalizationPaper | Code | Results | Date | Stars |
---|
Task | Papers | Share |
---|---|---|
Image Generation | 85 | 12.35% |
Disentanglement | 41 | 5.96% |
Style Transfer | 32 | 4.65% |
Image-to-Image Translation | 24 | 3.49% |
Image Manipulation | 22 | 3.20% |
Face Generation | 21 | 3.05% |
Face Recognition | 18 | 2.62% |
Decoder | 18 | 2.62% |
Translation | 17 | 2.47% |
Component | Type |
|
---|---|---|
🤖 No Components Found | You can add them if they exist; e.g. Mask R-CNN uses RoIAlign |