tensorflow / models

Models and examples built with TensorFlow
Other
77.16k stars 45.76k forks source link

use API for gender recognition #2945

Closed ghost closed 6 years ago

ghost commented 6 years ago

can I use tensorflow object detection API for gender recognition? I want to train SSD_mobile net for gender recognition and detection. I changed labelmap to:

item {
  id: 1
  name: 'man'
}
item {
  id: 2
  name: 'woman'
}

and num_classes=2 but the network cant be trained and this is the result: photo_2017-12-02_22-36-24 what should I do? can somebody help me?

reedwm commented 6 years ago

/CC @jesu9 @dreamdragon, can either of you comment?

jesu9 commented 6 years ago

@mosab-r What kind of training data are you using?

Chen