Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 853 Bytes

Readme.md

File metadata and controls

46 lines (38 loc) · 853 Bytes

age_gender_detector

Deploy

Detect age and gender via rest api

Docs

Used pre-trained model from: https://github.com/yu4u/age-gender-estimation

Usage

docker run -d -p 5101:5101 grinat0/age_gender_detector

And open http://localhost:5101 for see docs/examples

Build, deploy, develop

Develop

pip3 install -r requirements.txt
make dev

or

docker-compose up

Build docker image

make build-docker-image
make run-docker-image # run image

Without docker

pip3 install -r requirements.txt
make prod

Testing

make unittest

or

python -m unittest