Training GAN to Model Monkey Face Space

Motivation

Obtaining a high quality GAN for a specific domain of interest to monkeys is useful for experiments in lab.

For training a monkey face GAN, there are a few related challenges:

  1. Data problem: Obtaining images of monkey faces or bodies

  2. Model problem: An efficient training method for making GAN work for a small dataset.

DataSets

  • https://figshare.com/articles/dataset/Macaque_Faces/9862586
    • Really high quality, 73 individual monkeys varying in age, 4000 images.
    • With naturalistic background.
    • Well formatted labels for each image in csv.
  • https://visiome.neuroinf.jp/database/list/6948
    • 20 individuals, 465 images in total
    • No background, png, easy to add fake background or rotation to do augmentation.

A more general way of obtaining these images is to scrape from Youtube video frames, but it needs to be annotated and face needs to be detected and aligned. The tools will be linked if found in the future.

One useful code snippet to unzip data is the following .

import os, zipfile
dir_name = 'C:\\SomeDirectory'
extension = ".zip"
os.chdir(dir_name) # change directory from working dir to dir with files
for item in os.listdir(dir_name): # loop through items in dir
    if item.endswith(extension): # check for ".zip" extension
        file_name = os.path.abspath(item) # get full path of files
        zip_ref = zipfile.ZipFile(file_name) # create zipfile object
        zip_ref.extractall(dir_name) # extract file to dir
        zip_ref.close() # close file
        # os.remove(file_name) # delete zipped file

Face Detection and Alignment

GANs perform the best if your images are better aligned. Esp. if we are trying to model fine details of faces, the face are better aligned (rotated) and resized spatially. See this Kaggle image example. Moreover, for efficient training, we need to set a resolution of square image and then resize and crop the target to this size to really train.

FFHQ seems to use method in dlib (see this code) to align face based on keypoints. So we may try to use a similar method to find keypoints for monkey faces and then align them.

This post compares some older model/implementations to detect faces: dlib, mtcnn, DNN in caffe.

In this project, we use the human facial landmark model to detect and crop faces for monkeys. We are specifically using this fantastic open source program of detecting human face landmarks in pytorch.

After some short debugging, their pipeline built for human face detection, landmark detection and alignment worked like a charm. Here is one example without any fine-tuning or retraining their model.

The cropped and aligned version looks like this, which adjust and orientation to account for the head tilt.

Note: some lab has trained macaque specific face detectors like this in matlab. But we stick to the more general pipeline here.

Empirically, we find that applying the Human face landmark model to monkeys will result in 19.8% of the crops to be unusable, although most of these wrong crops are around eyes, or nose or hands, so it’s may be caused by a different geometry in monkey face and human face.

GAN training

For training a GAN with not a lot of images, we chose from these recent developments

  • Data efficient GAN from MIT https://github.com/mit-han-lab/data-efficient-gans
  • StyleGAN2 with Limited Data from NVIDIA https://github.com/NVlabs/stylegan2-ada-pytorch
  • Regularize limited data gan training from Google https://github.com/google/lecam-gan

Training Code

We picked the DiffAugment training procedure for StyleGAN2 in data efficient gans. Their repo is super well organized, training run itself is quite straight forward, no debugging needed. We used the following script .

python DiffAugment-stylegan2-pytorch\train.py --outdir=training-runs --data=$Datasets\macaque_face_aligned\fullsize_clean --gpus=1 --cfg=auto  --batch=12

We trained on a single NVIDIA 2060 GPU on Windows system, it takes ~ 3.5hrs to train 200 epochs. At 1000 epochs, the samples already look pretty good. So it’s less than a day to do the training.

Results

Training curves:

Fake monkey face distribution generated in 2805 epochs, looks pretty nice!