├── .gitignore ├── README.md ├── data ├── content1.jpg ├── content2.jpg ├── result │ ├── content1-style1-result.jpg │ ├── content1-style2-result.jpg │ ├── content2-style1-result.jpg │ └── content2-style2-result.jpg ├── style1.jpg └── style2.jpg ├── main.py ├── model.py └── mylibs.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/content1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/content1.jpg -------------------------------------------------------------------------------- /data/content2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/content2.jpg -------------------------------------------------------------------------------- /data/result/content1-style1-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/result/content1-style1-result.jpg -------------------------------------------------------------------------------- /data/result/content1-style2-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/result/content1-style2-result.jpg -------------------------------------------------------------------------------- /data/result/content2-style1-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/result/content2-style1-result.jpg -------------------------------------------------------------------------------- /data/result/content2-style2-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/result/content2-style2-result.jpg -------------------------------------------------------------------------------- /data/style1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/style1.jpg -------------------------------------------------------------------------------- /data/style2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/data/style2.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/model.py -------------------------------------------------------------------------------- /mylibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonzhaocn/cnnmrf-pytorch/HEAD/mylibs.py --------------------------------------------------------------------------------