├── LICENSE ├── README.md ├── content ├── content.jpg ├── content1.jpg └── content2.jpg ├── deepdream ├── 1.jpg ├── 2.jpg └── target.jpg ├── images ├── content0.jpg ├── result.jpg ├── style0.jpg └── target0.jpg ├── method └── method.jpg ├── style ├── style.jpg ├── style1.jpg └── style2.jpg ├── styleTransfer.py └── vgg_para └── README.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/README.md -------------------------------------------------------------------------------- /content/content.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/content/content.jpg -------------------------------------------------------------------------------- /content/content1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/content/content1.jpg -------------------------------------------------------------------------------- /content/content2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/content/content2.jpg -------------------------------------------------------------------------------- /deepdream/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/deepdream/1.jpg -------------------------------------------------------------------------------- /deepdream/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/deepdream/2.jpg -------------------------------------------------------------------------------- /deepdream/target.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/deepdream/target.jpg -------------------------------------------------------------------------------- /images/content0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/images/content0.jpg -------------------------------------------------------------------------------- /images/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/images/result.jpg -------------------------------------------------------------------------------- /images/style0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/images/style0.jpg -------------------------------------------------------------------------------- /images/target0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/images/target0.jpg -------------------------------------------------------------------------------- /method/method.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/method/method.jpg -------------------------------------------------------------------------------- /style/style.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/style/style.jpg -------------------------------------------------------------------------------- /style/style1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/style/style1.jpg -------------------------------------------------------------------------------- /style/style2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/style/style2.jpg -------------------------------------------------------------------------------- /styleTransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingtaoGuo/Style-transfer-with-neural-algorithm/HEAD/styleTransfer.py -------------------------------------------------------------------------------- /vgg_para/README.txt: -------------------------------------------------------------------------------- 1 | Please put vgg-19 in this folder. --------------------------------------------------------------------------------