├── .gitignore ├── .idea ├── face-makeup.PyTorch.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── cp └── 79999_iter.pth ├── imgs ├── 116.jpg └── 6.jpg ├── makeup.py ├── makeup ├── 116_0.png ├── 116_1.png ├── 116_2.png ├── 116_3.png ├── 116_4.png ├── 116_5.png ├── 116_6.png ├── 116_lip_ori.png └── 116_ori.png ├── model.py ├── resnet.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/face-makeup.PyTorch.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/.idea/face-makeup.PyTorch.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /cp/79999_iter.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/cp/79999_iter.pth -------------------------------------------------------------------------------- /imgs/116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/imgs/116.jpg -------------------------------------------------------------------------------- /imgs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/imgs/6.jpg -------------------------------------------------------------------------------- /makeup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup.py -------------------------------------------------------------------------------- /makeup/116_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_0.png -------------------------------------------------------------------------------- /makeup/116_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_1.png -------------------------------------------------------------------------------- /makeup/116_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_2.png -------------------------------------------------------------------------------- /makeup/116_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_3.png -------------------------------------------------------------------------------- /makeup/116_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_4.png -------------------------------------------------------------------------------- /makeup/116_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_5.png -------------------------------------------------------------------------------- /makeup/116_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_6.png -------------------------------------------------------------------------------- /makeup/116_lip_ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_lip_ori.png -------------------------------------------------------------------------------- /makeup/116_ori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/makeup/116_ori.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/model.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/resnet.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zllrunning/face-makeup.PyTorch/HEAD/test.py --------------------------------------------------------------------------------