0

I am trying to use Microsoft's Face API, for facial recognition for my company employees. I see that you need to create a database in Microsoft's serverS.

  1. Is there a way to use their API's on our company database (without creating another DB on their server? Also any changes you make to this DB will be taken care of.
  2. If no, then how will you take care of the changes you want (I know that there are delete API calls as well, but will not it be cumbersome?)
Nicolas R
  • 13,812
  • 2
  • 28
  • 57
badcoder29
  • 51
  • 1
  • 5

1 Answers1

0

I think you may have misunderstood how this API works. Whenever there is a change to your list of employees, the PersonGroup (a friendly name for the image classifier model), must be retrained in order for it to start recognizing the added faces and stop recognizing removed ones. So even if there was a way to store the model locally (which there isn't), you will still need to track add/removes and take the additional step of training.

cthrash
  • 2,938
  • 2
  • 11
  • 10