AI-102 Question 95
Select 4You are tasked with implementing an image moderation solution for a social media platform using Azure AI Content Safety. The solution should detect explicit adult content, violence, and offensive imagery. Additionally, you need to ensure that the solution integrates seamlessly with the platform's existing moderation workflow by providing confidence scores and metadata for flagged content. Which steps should you take to implement this solution?
- A
Use the Azure AI Content Safety API to analyze images and configure it to return confidence scores for detected content.
- B
Set up Azure Blob Storage to store flagged images and configure an Event Grid to trigger moderation workflows.
- C
Enable the Azure AI Content Safety API to automatically delete flagged images from the platform.
- D
Integrate the Azure AI Content Safety API with your application's backend to handle flagged content and metadata.
- E
Configure a Content Moderator Review Tool for manual inspection of flagged content as a secondary check.
Show answer and explanation
Correct answers: A, B, D, E
Explanation
To implement an effective image moderation solution with Azure AI Content Safety, you need to analyze images using the Content Safety API, store flagged content in a centralized location like Azure Blob Storage, and ensure that the API integrates with your application's backend for handling metadata and workflows. Additionally, enabling a manual review process through a Content Moderator Review Tool provides an extra layer of validation for content flagged by the AI.
- A. Correct.
This is correct. The Azure AI Content Safety API provides capabilities to analyze images and return confidence scores for detected content, which is essential for moderation workflows.
- B. Correct.
This is correct. Using Azure Blob Storage to store flagged images and Event Grid to trigger workflows ensures flagged content can be processed efficiently.
- C. Incorrect.
This is incorrect. The Azure AI Content Safety API does not have built-in functionality to automatically delete flagged content. It provides analysis, leaving actions to the application.
- D. Correct.
This is correct. Integrating the API with the backend allows the application to handle flagged content and associated metadata effectively, ensuring seamless moderation.
- E. Correct.
This is correct. A Content Moderator Review Tool can be used as an additional layer for manual inspection, providing human oversight when necessary.