Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Machine Learning - Specialty All Questions

View all questions & answers for the AWS Certified Machine Learning - Specialty exam

Exam AWS Certified Machine Learning - Specialty topic 1 question 330 discussion

A company that operates oil platforms uses drones to photograph locations on oil platforms that are difficult for humans to access to search for corrosion.

Experienced engineers review the photos to determine the severity of corrosion. There can be several corroded areas in a single photo. The engineers determine whether the identified corrosion needs to be fixed immediately, scheduled for future maintenance, or requires no action. The corrosion appears in an average of 0.1% of all photos.

A data science team needs to create a solution that automates the process of reviewing the photos and classifying the need for maintenance.

Which combination of steps will meet these requirements? (Choose three.)

  • A. Use an object detection algorithm to train a model to identify corrosion areas of a photo.
  • B. Use Amazon Rekognition with label detection on the photos.
  • C. Use a k-means clustering algorithm to train a model to classify the severity of corrosion in a photo.
  • D. Use an XGBoost algorithm to train a model to classify the severity of corrosion in a photo.
  • E. Perform image augmentation on photos that contain corrosion.
  • F. Perform image augmentation on photos that do not contain corrosion.
Show Suggested Answer Hide Answer
Suggested Answer: ADE 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
spinatram
1 week, 5 days ago
A,B,F You can not use XGBoost for object recognition directly. You need to integrate it with CNN. You can use Rekognition custom for this scenario
upvoted 1 times
...
MultiCloudIronMan
3 weeks, 4 days ago
Selected Answer: ADE
Recognition is for general identification, this requires a specific training with only 1% data available.
upvoted 1 times
...
cloudera3
4 months ago
Selected Answer: ADE
Detecting corrosion is too specialized a task for Rekognition - trying transfer learning would literally mean re-training. AWS blog explaining suitability of Object Detection/Semantic Segmentation (though they prefer the color classification approach using XGBoost): https://aws.amazon.com/blogs/machine-learning/rust-detection-using-machine-learning-on-aws/ The enhancement step may be needed to contrast enhance/sharpen images.
upvoted 1 times
...
3eb0542
6 months, 1 week ago
Selected Answer: ABE
The combination of steps that would meet the requirements is indeed A, B, and E
upvoted 1 times
...
vkbajoria
8 months ago
Selected Answer: ABE
This is object detection problem, which Rekognitation can do since they have 0.1% corrosion photos, augmentation is necessary
upvoted 2 times
...
butaman
8 months ago
Selected Answer: ADE
A. Use an object detection algorithm: This can help identify corrosion areas in a photo. E. Perform image augmentation on photos with corrosion: This can improve the model’s ability to generalize by increasing the diversity of the training data. D. Use an XGBoost algorithm: This can classify the severity of the corrosion after the areas of corrosion have been identified. It’s effective for multi-class classification problems.
upvoted 3 times
...
AIWave
8 months ago
Selected Answer: ABE
A: Yes - train a model that identifies corrosion areas within the photos B: Yes - identify and label objects, including corrosion, in the images. C: No - Not for classification D: No - XGBoost doesn't work on images E: Yes - rotation, scaling, and flipping, can enhance the model’s ability to generalize and improve its performance F: not required
upvoted 1 times
...
KAST_424
8 months ago
Selected Answer: ADE
Object detection algorithm can be trained to identify corrosion rather than too customize Rekognition
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...