ibug-group / fpage

FP-Age: Leveraging Face Parsing Attention for Facial Age Estimation in the Wild

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FP-Age: Leveraging Face Parsing Attention for Facial Age Estimation in the Wild

PWC PWC

Official repo for our paper FP-Age: Leveraging Face Parsing Attention for Facial Age Estimation in the Wild, accepted by IEEE Transactions on Image Processing (TIP). For IMDB-Clean, please visit https://github.com/yiminglin-ai/imdb-clean.

fpage

How to Install

Dependencies

After installing the needed dependencies, run the following commands in bash:

git clone --recursive https://github.com/ibug-group/fpage
cd fpage
pip install -e .

Pretrained weights

Download the pretrained weights and unzip them in ibug/age_estimation/weights/

How to run the demo

To run FP-Age using the webcam as input:

python fpage_test.py -i 0 -d cpu # CAUTION: running on CPU is slow

To run on CUDA (Recommended):

python fpage_test.py -i 0 -d cuda:0 

Command-line arguments:

-i VIDEO: Index of the webcam to use (start from 0) or
          path of the input video file
-d: Device to be used by PyTorch (default=cuda:0)

Label map for parsing:

0 : background
1 : skin (including face and scalp)
2 : left_eyebrow
3 : right_eyebrow
4 : left_eye
5 : right_eye
6 : nose
7 : upper_lip
8 : inner_mouth
9 : lower_lip
10 : hair
11 : left_ear
12 : right_ear
13 : glasses

IMDB-Clean

We provide IMDB-Clean for training and testing age estimation models. Please refer to https://github.com/yiminglin-ai/imdb-clean for details.

Baselines

To test baselines, download checkpoints and unzip it under weights folder, then run baseline_test.py:

python baseline_test.py -d cpu --loss dex --age-classes 101
python baseline_test.py -d cpu --loss mv --age-classes 101 # mean variance loss
python baseline_test.py -d cpu --loss dldl --age-classes 101
python baseline_test.py -d cpu --loss dldlv2 --age-classes 101
python baseline_test.py -d cpu --loss ord --age-classes 101

Please refer to our paper for the details of the baselines.

Demo

age_demo

Reference

Note: If you use this repository in your research, we kindly request you to cite the following paper:

  • Lin, Yiming, Jie Shen, Yujiang Wang, and Maja Pantic. "FP-Age: Leveraging Face Parsing Attention for Facial Age Estimation in the Wild." arXiv preprint arXiv:2106.11145 (2021).

Bibtex:

@misc{lin2021fpage,
      title={FP-Age: Leveraging Face Parsing Attention for Facial Age Estimation in the Wild}, 
      author={Yiming Lin and Jie Shen and Yujiang Wang and Maja Pantic},
      year={2021},
      eprint={2106.11145},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}

About

FP-Age: Leveraging Face Parsing Attention for Facial Age Estimation in the Wild

License:MIT License


Languages

Language:Python 100.0%