├── LICENSE ├── README.md ├── figures └── teaser.jpg ├── function.py ├── inputs ├── content │ └── 1.jpg └── style │ └── 1.jpg ├── metrics ├── README.md ├── calc_cs_loss.py └── calc_ssim.py ├── models ├── README.md ├── content_encoder_iter_160000.pth.tar ├── decoder_iter_160000.pth.tar ├── modulator_iter_160000.pth.tar └── style_encoder_iter_160000.pth.tar ├── net_microAST.py ├── sampler.py ├── test_microAST.py └── train_microAST.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/README.md -------------------------------------------------------------------------------- /figures/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/figures/teaser.jpg -------------------------------------------------------------------------------- /function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/function.py -------------------------------------------------------------------------------- /inputs/content/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/inputs/content/1.jpg -------------------------------------------------------------------------------- /inputs/style/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/inputs/style/1.jpg -------------------------------------------------------------------------------- /metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/metrics/README.md -------------------------------------------------------------------------------- /metrics/calc_cs_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/metrics/calc_cs_loss.py -------------------------------------------------------------------------------- /metrics/calc_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/metrics/calc_ssim.py -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- 1 | Put the pre-trained VGG and models here. 2 | -------------------------------------------------------------------------------- /models/content_encoder_iter_160000.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/models/content_encoder_iter_160000.pth.tar -------------------------------------------------------------------------------- /models/decoder_iter_160000.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/models/decoder_iter_160000.pth.tar -------------------------------------------------------------------------------- /models/modulator_iter_160000.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/models/modulator_iter_160000.pth.tar -------------------------------------------------------------------------------- /models/style_encoder_iter_160000.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/models/style_encoder_iter_160000.pth.tar -------------------------------------------------------------------------------- /net_microAST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/net_microAST.py -------------------------------------------------------------------------------- /sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/sampler.py -------------------------------------------------------------------------------- /test_microAST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/test_microAST.py -------------------------------------------------------------------------------- /train_microAST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EndyWon/MicroAST/HEAD/train_microAST.py --------------------------------------------------------------------------------