Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tg-bomze/BabyGAN
StyleGAN-based predictor of children's faces from photos of theoretical parents.
https://github.com/tg-bomze/BabyGAN
Last synced: 3 months ago
JSON representation
StyleGAN-based predictor of children's faces from photos of theoretical parents.
- Host: GitHub
- URL: https://github.com/tg-bomze/BabyGAN
- Owner: tg-bomze
- Created: 2020-08-23T19:25:23.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-26T21:35:44.000Z (over 1 year ago)
- Last Synced: 2024-05-29T04:08:22.529Z (6 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 28.8 MB
- Stars: 335
- Watchers: 12
- Forks: 63
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BabyGAN
![logo](https://raw.githubusercontent.com/tg-bomze/BabyGAN/master/media/logo.png)
**Check how it works online:**
- Russian Language [![Colab](https://camo.githubusercontent.com/52feade06f2fecbf006889a904d221e6a730c194/68747470733a2f2f636f6c61622e72657365617263682e676f6f676c652e636f6d2f6173736574732f636f6c61622d62616467652e737667)](https://colab.research.google.com/github/tg-bomze/BabyGAN/blob/master/BabyGAN_(RUS).ipynb)
- English Language [![Colab](https://camo.githubusercontent.com/52feade06f2fecbf006889a904d221e6a730c194/68747470733a2f2f636f6c61622e72657365617263682e676f6f676c652e636f6d2f6173736574732f636f6c61622d62616467652e737667)](https://colab.research.google.com/github/tg-bomze/BabyGAN/blob/master/BabyGAN_(ENG).ipynb)
StyleGAN-based predictor of children's faces from photographs of theoretical parents. The latent representation is extracted from the input images, after which the algorithm mixes them in certain proportions. The neural network model is based on the GAN architecture. Using latency direction, you can change various parameters: age, face position, emotions and gender.**Based on:** [StyleGAN](https://github.com/NVlabs/stylegan)
**Encoder:** [StyleGAN-Encoder](https://github.com/pbaylies/stylegan-encoder)
![example1](https://raw.githubusercontent.com/tg-bomze/BabyGAN/master/media/example1.JPG)
![example2](https://raw.githubusercontent.com/tg-bomze/BabyGAN/master/media/example2.JPG)
![example3](https://raw.githubusercontent.com/tg-bomze/BabyGAN/master/media/example3.JPG)## Pre-train Models and dictionaries
Follow the [LINK](https://drive.google.com/drive/folders/1xwqqG0HkLe2AiXxjC-XK8OfvMKT1jBlp) and add shortcut to Drive:![shortcut](media/mount_eng.png)
The folder structure should be:
.
├── data
│ └── finetuned_resnet.h5
├── karras2019stylegan-ffhq-1024x1024.pkl
├── shape_predictor_68_face_landmarks.dat.bz2
├── vgg16_weights_tf_dim_ordering_tf_kernels_notop.h5
├── vgg16_zhang_perceptual.pkl
└── ...## Prerequisites
* 64-bit Python 3.6 installation.
* TensorFlow 1.10.0 with GPU support.
* One or more high-end NVIDIA GPUs with at least 11GB of DRAM.
* NVIDIA driver 391.35 or newer, CUDA toolkit 9.0 or newer, cuDNN 7.3.1 or newer.## Generating latent representation of your images
You can generate latent representations of your own images using two scripts:
1) Create folders for photos
> mkdir raw_images aligned_images2) Extract and align faces from images
> python align_images.py raw_images/ aligned_images/3) Find latent representation of aligned images
> python encode_images.py aligned_images/ generated_images/ latent_representations/## Usage BabyGAN
- SOON