├── LICENSE ├── README.md ├── component.py ├── component_results ├── AdaIN.npz └── SANet.npz ├── docs ├── fig.png ├── fig2.png └── work.png ├── main.py ├── save_html.py ├── src ├── AdaIN_utils.py └── SANet_utils.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/README.md -------------------------------------------------------------------------------- /component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/component.py -------------------------------------------------------------------------------- /component_results/AdaIN.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/component_results/AdaIN.npz -------------------------------------------------------------------------------- /component_results/SANet.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/component_results/SANet.npz -------------------------------------------------------------------------------- /docs/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/docs/fig.png -------------------------------------------------------------------------------- /docs/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/docs/fig2.png -------------------------------------------------------------------------------- /docs/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/docs/work.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/main.py -------------------------------------------------------------------------------- /save_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/save_html.py -------------------------------------------------------------------------------- /src/AdaIN_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/src/AdaIN_utils.py -------------------------------------------------------------------------------- /src/SANet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/src/SANet_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shelsin/ArtIns/HEAD/utils.py --------------------------------------------------------------------------------