Add Persons and Faces to PerGroup Object | AI-102 Exam | Microsoft

Mapping Steps and Descriptions for Adding Persons and Faces to PerGroup Object in Azure

Question

To add a large number of persons and faces to a PerGroup object, you execute a series of steps in Azure using the Face .NET client library.

Review the table given below and map the steps (column Step) with the right description (column Description).

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

Correct Answer: C

Here is the correct order of execution steps:

Option A is incorrect as per the correct order of execution steps, stated above.

PersonGroup needs to be created before creating Persons.

Option B is incorrect as per the correct order of execution steps, stated above.

The API call needs to be authorized, and PersonGroup and persons need to be created before adding faces to the persons.

Option C is correct as per the correct order of execution steps, stated above.

Option D is incorrect as per the correct order of execution steps, stated above.

The API call needs to be authorized first.

Reference:

To learn more about adding faces to PersonGroup, use the link given below:

The table given below lists a series of steps (column Step) and their descriptions (column Description) to add a large number of persons and faces to a PerGroup object using the Face .NET client library in Azure:

StepDescription
S11Create a new person group.
S12Create a new person.
S13Add a face to a person.
S14Train the person group.
S15Get the training status of the person group.
D21This step creates a new person group that will contain the persons and faces. Before adding any persons or faces, a new person group must be created using the CreateAsync method.
D22This step retrieves the training status of the person group after training is complete. The GetTrainingStatusAsync method is used to retrieve the training status of the person group.
D23This step adds a face to a person. The AddFaceFromUrlAsync or AddFaceFromStreamAsync method is used to add a face to a person.
D24This step trains the person group using the TrainAsync method. Once all the faces have been added, the person group must be trained before it can be used for identification.
D25This step creates a new person for the person group using the CreateAsync method. A person must be created before faces can be added to them.

Based on the descriptions given above, we can map the steps to their respective descriptions as follows:

A. S11 -> D21; S12 -> D25; S13 -> D23; S14 -> D24; S15 -> D22 B. S11 -> D21; S12 -> D22; S13 -> D23; S14 -> D24; S15 -> D25 C. S11 -> D21; S12 -> D25; S13 -> D24; S14 -> D23; S15 -> D22 D. S11 -> D21; S12 -> D22; S13 -> D24; S14 -> D23; S15 -> D25

Option B seems to be the correct answer as it correctly matches the steps with their respective descriptions.