-
Hello, We tried to define exactly what is the difference between method add subject and method add subject example described here : and As we can see in both we can add several pictures for 1 subject, so what is the subtility between 2 methods (maybe a use case can be helpful) Thanks ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The subject example is a face example. This is one example of the face. When you create a subject, it's empty. When you create a subject example, we check if there is a subject, then we just add an example to the subject. If there is no such subject, we create one. Basically, we added work with the subject to simplify work on our UI. But as you are going to have your own UI, probably those endpoints will help you too. |
Beta Was this translation helpful? Give feedback.
The subject example is a face example. This is one example of the face.
The subject is a collection of subject examples.
You can see it as a subject is a table in DB and subject examples are the rows. (We do not create a table for each subject thought)
When you create a subject, it's empty.
For facial recognition, we use only subject examples. So empty subject doesn't take part in facial recognition.
When you create a subject example, we check if there is a subject, then we just add an example to the subject. If there is no such subject, we create one.
Basically, we added work with the subject to simplify work on our UI. But as you are going to have your own UI, probably those endpoints w…