You are tasked to create an Azure Cognitive Services Face resource using Azure CLI.
Given the transaction requirement, you realize that the free tier will not suffice and hence decide to use the standard pricing tier.
Review the command given below and complete it by choosing the keywords for az create command and the sku value.
(select two answer choices)
az cognitiveservices ……………………………………………………create \ --name <resource name>\ --resource-group <resource-group name> \ --kind Face \ --sku …………………………………………………… \ --location WestEurope \ --yes
Click on the arrows to vote for the correct answer
A. B. C. D. E.Correct Answers: C and E.
Option A is incorrect because the correct command to be used is “az cognitiveservices account create”.
Option B is incorrect becausethe Free tier is not suited to support the requirement.
Free tier can only support 20 transactions per minute.
Option C is correct because the command to create a Cognitive resource is az cognitiveservices account create.
Here is the completed command.
Option D is incorrect because the correct command to be used is “az cognitiveservices account create”.
Option E is correct because per the transaction volume requirements, the objective is to use a standard tier.
Standard tier can support upto 10 transactions per second.
Reference:
To learn more about creating a cognitive services resource, use the link given below:
To create an Azure Cognitive Services Face resource using Azure CLI with a standard pricing tier, we need to use the appropriate sku value in the az create command. The command is given below, and we need to fill in the missing sku value:
<pre class="brush:java;"> az cognitiveservices create \ --name <resource name> \ --resource-group <resource-group name> \ --kind Face \ --sku …………………………………………………… \ --location WestEurope \ --yes </pre>We have to choose two answer choices from the options provided.
The available options are: A. face B. F0 C. account D. resource E. S0
Here, the --kind parameter specifies the type of cognitive service to create, which is Face in this case. The available SKUs for Face resource are Free (F0) and Standard (S0).
So, we need to choose the two options that are relevant for the sku value.
Option A: "face" - This is not a valid sku value for Azure Cognitive Services Face resource. Therefore, it is not the correct answer.
Option B: "F0" - This is the sku value for the Free tier of Azure Cognitive Services Face resource. As we need to use the standard pricing tier, we cannot use this option. Therefore, it is not the correct answer.
Option C: "account" - This is not a valid sku value for Azure Cognitive Services Face resource. Therefore, it is not the correct answer.
Option D: "resource" - This is not a valid sku value for Azure Cognitive Services Face resource. Therefore, it is not the correct answer.
Option E: "S0" - This is the correct sku value for the Standard pricing tier of Azure Cognitive Services Face resource. Therefore, it is one of the correct answers.
Hence, the correct answers are options E and one more appropriate option. In this case, the appropriate option is S1, S2, or S3 depending on the specific requirements of the project.