Skip to content

Diversifynd: a platform intended to support diversity by using AI (startmeapp hackathon 2018-2019)

Notifications You must be signed in to change notification settings

muoten/diversityscore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Diversifynd

Diversifynd is a platform that supports diversity.

  • Users can check which events or organizations have a better degree of representation in term of gender or race.
  • For this purpose computer vision is applied to images of these events or organizations

hackathon startmeapp

Deploy

Build image for demo web and REST service.

docker build . -t diversifynd/web

Build image for our custom race and gender recognition model. Based on Tensorflow/serving and project https://github.com/zZyan/race_gender_recognition

docker build . -t diversifynd/model -f Dockerfile.model

Launch race and gender recognition model

docker run -e "PORT=8501" -p 8501:8501 diversifynd/model

Launch demo web and REST service

docker run -e "PORT=8080" -p 8080:8080 diversifynd/web

And browse localhost:8080

REST API:

  • /stats [POST]
    • arguments [multipart/form-data]:
      • image
      • female
      • non_white
      • total
    • return [application/json]:
      • image
      • pic_stats
      • stats
    • Example:
      • curl -F "image=@resources/img/ironhack.png" -F "female=0" -F "total=4" -F "non_white=1" https://localhost:8080/stats

About

Diversifynd: a platform intended to support diversity by using AI (startmeapp hackathon 2018-2019)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published