All Projects → siriusdemon → pytorch-DEX

siriusdemon / pytorch-DEX

Licence: other
Pytorch implementation of DEX: Deep EXpectation of apparent age from a single image

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pytorch-DEX

face age gender
Can we predict the age and gender of someone given a picture of their face ?
Stars: ✭ 40 (-34.43%)
Mutual labels:  age-prediction, gender-prediction
javacv-cnn-example
A example to demonstrate the usage of JavaCV and CNN for gender and age recognition
Stars: ✭ 24 (-60.66%)
Mutual labels:  gender, age
multi-task-learning
Multi-task learning smile detection, age and gender classification on GENKI4k, IMDB-Wiki dataset.
Stars: ✭ 154 (+152.46%)
Mutual labels:  gender, age
facescore
人脸打分服务,通过tensorflow通过人脸识别,测年龄,最终返回打分的json
Stars: ✭ 31 (-49.18%)
Mutual labels:  age
kbs2
A secret manager backed by age
Stars: ✭ 51 (-16.39%)
Mutual labels:  age
feminizator.github.io
Феминизатор слов
Stars: ✭ 29 (-52.46%)
Mutual labels:  gender
equalstreetnames
Map visualizing the streetnames by gender : 50 cities in 11 countries
Stars: ✭ 64 (+4.92%)
Mutual labels:  gender
DeepLearning-Gdansk2019-tutorial
Ordinal Regression tutorial for the International Summer School on Deep Learning 2019
Stars: ✭ 66 (+8.2%)
Mutual labels:  age-prediction
GenderMagRecordersAssistant
Making the world of software a more inclusive place
Stars: ✭ 24 (-60.66%)
Mutual labels:  gender
PSCognitiveService
Powershell module to access Microsoft Azure Machine learning RESTful API's or Microsoft cognitive services
Stars: ✭ 46 (-24.59%)
Mutual labels:  gender
emotion-and-gender-classification
2 networks to recognition gender and emotion; face detection using Opencv or Mtcnn
Stars: ✭ 21 (-65.57%)
Mutual labels:  age
genderBR
Predict gender from Brazilian first names
Stars: ✭ 50 (-18.03%)
Mutual labels:  gender
genderkit
Gender Construction Kit - The UK guide to changing things linked to gender
Stars: ✭ 55 (-9.84%)
Mutual labels:  gender
AgeEstimateAdience
Age and Gender Estimation Using Convolutional Neural Network
Stars: ✭ 42 (-31.15%)
Mutual labels:  age
intenseye-boun-workshop
Code for the workshop in BOUN Tech Summit (03.03.2019)
Stars: ✭ 32 (-47.54%)
Mutual labels:  gender
homeage
runtime decrypted age secrets for nix home manager
Stars: ✭ 43 (-29.51%)
Mutual labels:  age
AgePredictor
Age classification from text using PAN16, blogs, Fisher Callhome, and Cancer Forum
Stars: ✭ 13 (-78.69%)
Mutual labels:  age
namsor-python-sdk2
NamSor API v2 Python SDK - classify personal names accurately by gender, country of origin, or ethnicity.
Stars: ✭ 23 (-62.3%)
Mutual labels:  gender
gender-render
Template-system and proof-of-concept for rendering gender-neutral text-, email- and RPG-text-templates with the correct pronouns of all people involved.
Stars: ✭ 21 (-65.57%)
Mutual labels:  gender
age-gender-estimation
A Lightweight and Efficient Method for Face Age and Gender Estimation Implemented in MXNet
Stars: ✭ 61 (+0%)
Mutual labels:  gender-prediction

DEX: Deep EXpectation of apparent age from a single image

This is a pytorch version of DEX. Refer to its Home Page for more details

You can refer to insight if you want a much smaller model but it uses mxnet instead of pytorch. I haven't convert it to pytorch yet.

Getting Started

A separate Python environment is recommended.

  • Python3.5+ (Python3.5, Python3.6 are tested)
  • Pytorch == 1.0
  • opencv4 (opencv3.4.5 is tested also)
  • numpy

install dependences using pip

pip3 install numpy opencv-python
pip3 install https://download.pytorch.org/whl/cpu/torch-1.0.1.post2-cp36-cp36m-linux_x86_64.whl
pip3 install torchvision (optional)

or install using conda

conda install opencv numpy
conda install pytorch-cpu torchvision-cpu -c pytorch

Usage

git clone https://github.com/siriusdemon/pytorch-DEX.git
cd pytorch-DEX
python demo.py path/to/image 

Results

predict image: imgs/2.png
woman: 0.994, man: 0.006
age: 21.433

predict image: imgs/5.png
woman: 0.010, man: 0.990
age: 42.896

Installation

You can use dex as a separate Python package right now!

cd pytorch-DEX
pip install .

See demo.py for example.

Citation

@InProceedings{Rothe-ICCVW-2015,
  author = {Rasmus Rothe and Radu Timofte and Luc Van Gool},
  title = {DEX: Deep EXpectation of apparent age from a single image},
  booktitle = {IEEE International Conference on Computer Vision Workshops (ICCVW)},
  year = {2015},
  month = {December},
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].