├── Images ├── NewYork_small.jpg ├── Out_Style1_small.jpg ├── Out_Style2_small.jpg ├── Out_Style3_small.jpg ├── Out_Style4_small.jpg ├── Out_Style5_small.jpg ├── style1_small.jpg ├── style2_small.jpg ├── style3_small.jpg ├── style4_small.jpg └── style5_small.jpg ├── LICENSE ├── README.md ├── Style Transfer Test.ipynb ├── Style Transfer Train.ipynb ├── Utils ├── __init__.py ├── networks.py └── utils.py └── examples └── architecture.jpg /Images/NewYork_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/NewYork_small.jpg -------------------------------------------------------------------------------- /Images/Out_Style1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/Out_Style1_small.jpg -------------------------------------------------------------------------------- /Images/Out_Style2_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/Out_Style2_small.jpg -------------------------------------------------------------------------------- /Images/Out_Style3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/Out_Style3_small.jpg -------------------------------------------------------------------------------- /Images/Out_Style4_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/Out_Style4_small.jpg -------------------------------------------------------------------------------- /Images/Out_Style5_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/Out_Style5_small.jpg -------------------------------------------------------------------------------- /Images/style1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/style1_small.jpg -------------------------------------------------------------------------------- /Images/style2_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/style2_small.jpg -------------------------------------------------------------------------------- /Images/style3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/style3_small.jpg -------------------------------------------------------------------------------- /Images/style4_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/style4_small.jpg -------------------------------------------------------------------------------- /Images/style5_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Images/style5_small.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/README.md -------------------------------------------------------------------------------- /Style Transfer Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Style Transfer Test.ipynb -------------------------------------------------------------------------------- /Style Transfer Train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Style Transfer Train.ipynb -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["utils", "networks"] 2 | -------------------------------------------------------------------------------- /Utils/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Utils/networks.py -------------------------------------------------------------------------------- /Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/Utils/utils.py -------------------------------------------------------------------------------- /examples/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAlberts99/PyTorch-AdaIN-StyleTransfer/HEAD/examples/architecture.jpg --------------------------------------------------------------------------------