Question 39:
You are tasked to use image classification in Azure to classify a set of images. You plan to use Custom Vision REST API to upload and tag the images. Review the code snippet given below and choose the class that you will use for publishing the current iteration: <pre>private static void PublishIteration(................................................. trainingApi, Project project) { trainingApi.PublishIteration(project.Id, iteration.Id, publishedModelName, predictionResourceId); Console.WriteLine("Done!\n"); } </pre>
Answer options:
A.PredictionModel B.CustomVisionPredictionClient C.ApiKeyServiceClientCredentials D.CustomVisionTrainingClient