This project implements Neural Style Transfer (NST) using Adaptive Instance Normalization (AdaIN).
The encoder is based on VGG, and the decoder reconstructs the stylized image.
- Upload a content image and a style image.
- Generates a new image that preserves the content of the first image while adopting the style of the second.
- Uses AdaIN for flexible style transfer.
- Encoder: VGG network pretrained on ImageNet.
- Content image → passed through VGG encoder.
- Style image → also passed through VGG encoder.
- AdaIN aligns the statistics (mean & variance) of content features to style features.
- Decoder reconstructs the stylized image.