Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grinat/age_gender_detector
Use dnn for detect age and gender via rest api
https://github.com/grinat/age_gender_detector
Last synced: about 2 months ago
JSON representation
Use dnn for detect age and gender via rest api
- Host: GitHub
- URL: https://github.com/grinat/age_gender_detector
- Owner: grinat
- Created: 2019-09-26T11:59:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-21T22:00:20.000Z (about 2 years ago)
- Last Synced: 2023-03-01T20:22:58.188Z (almost 2 years ago)
- Language: Python
- Homepage: https://age-gender-detector-v1.herokuapp.com/
- Size: 258 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
### age_gender_detector
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/grinat/age_gender_detector)Detect age and gender via rest api
[Docs](https://age-gender-detector-v1.herokuapp.com)
Used pre-trained model from: [https://github.com/yu4u/age-gender-estimation](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
```