├── .DS_Store ├── .gitignore ├── README.md ├── gpu util ├── layers.py ├── main.py ├── model.py ├── present ├── Architecture_1.png ├── generator_arch.png ├── style_fusion.png └── table.PNG └── vgg16.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/README.md -------------------------------------------------------------------------------- /gpu util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/gpu util -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/layers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/model.py -------------------------------------------------------------------------------- /present/Architecture_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/present/Architecture_1.png -------------------------------------------------------------------------------- /present/generator_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/present/generator_arch.png -------------------------------------------------------------------------------- /present/style_fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/present/style_fusion.png -------------------------------------------------------------------------------- /present/table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/present/table.PNG -------------------------------------------------------------------------------- /vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldFemale/MakeupEmbeddingGAN-tf-Implement/HEAD/vgg16.py --------------------------------------------------------------------------------