AI-102 Question 96
Select 4You are building an image moderation solution for a content-sharing platform using Azure AI Content Safety. The solution must automatically detect and flag images containing explicit content, such as nudity or violence, while ensuring that the system can handle a large volume of images efficiently. Which of the following steps should you include in your solution design?
- A
Configure the Azure AI Content Safety API to enable image content moderation.
- B
Implement a custom AI model trained on a proprietary dataset to replace the Azure AI Content Safety API.
- C
Set up an Azure Function to trigger the moderation process whenever a new image is uploaded.
- D
Use the AI Content Safety API to classify images for potential explicit content and flag them for review.
- E
Store flagged images in an Azure Blob Storage container with restricted access for further human review.
Show answer and explanation
Correct answers: A, C, D, E
Explanation
To implement an image moderation solution with Azure AI Content Safety, you need to configure the AI Content Safety API to handle content moderation tasks, set up an automated event-driven pipeline using Azure Functions, classify images for explicit content, and securely store flagged images for further review. Using the Azure AI Content Safety API streamlines the process and eliminates the need for building and training custom models, while leveraging Azure Blob Storage ensures secure handling of sensitive data.
- A. Correct.
Correct. The Azure AI Content Safety API provides built-in capabilities for detecting explicit content in images, making it a key component of the solution.
- B. Incorrect.
Incorrect. While custom AI models can be implemented, using the Azure AI Content Safety API is recommended for this scenario as it is pre-configured for content moderation tasks and simplifies implementation.
- C. Correct.
Correct. Using an Azure Function to trigger the moderation process ensures the solution is event-driven and can handle a high volume of incoming images efficiently.
- D. Correct.
Correct. The AI Content Safety API can be used to classify images and flag those containing explicit content, which is a core requirement of the solution.
- E. Correct.
Correct. Storing flagged images in Azure Blob Storage with restricted access allows for secure human review, maintaining data privacy and compliance.