AI-102 Question 99
Select 3You are tasked with implementing an image moderation solution for a social media application using Azure AI Content Safety. The application must automatically detect and flag images containing adult content, violent imagery, or offensive content. Additionally, the solution should provide a confidence score for each flagged image to help moderators prioritize their review. Which steps should you take to implement this solution?
- A
Integrate the Azure AI Content Safety API and configure it to detect adult, racy, and violent content in images.
- B
Use the Azure Computer Vision API to extract text from images and manually analyze it for offensive language.
- C
Enable confidence score thresholds in the Azure AI Content Safety API to prioritize flagged images for moderation.
- D
Store flagged images in a secure Azure Blob Storage container for further review by moderators.
- E
Build a custom machine learning model using Azure Machine Learning to analyze images for content moderation.
Show answer and explanation
Correct answers: A, C, D
Explanation
To implement an image moderation solution with Azure AI Content Safety, you should leverage its pre-built capabilities for detecting inappropriate content in images. Configuring confidence scores helps prioritize content for review, while securely storing flagged images ensures they are available for moderation. Using other services like Azure Computer Vision or building custom models is not required, as Azure AI Content Safety is specifically designed for this purpose.
- A. Correct.
Correct. The Azure AI Content Safety API provides built-in capabilities to detect adult, racy, and violent content in images, making it suitable for this scenario.
- B. Incorrect.
Incorrect. While the Azure Computer Vision API can extract text from images, it does not directly support content moderation or provide confidence scores for offensive language.
- C. Correct.
Correct. Confidence score thresholds in the Azure AI Content Safety API can help prioritize flagged images, ensuring moderators focus on the most critical cases first.
- D. Correct.
Correct. Flagged images should be securely stored for review, and Azure Blob Storage is an appropriate service for this purpose.
- E. Incorrect.
Incorrect. Building a custom machine learning model is unnecessary for this scenario because Azure AI Content Safety already provides pre-built capabilities for image moderation.