MLS-C01 · Question #183
An ecommerce company is automating the categorization of its products based on images. A data scientist has trained a computer vision model using the Amazon SageMaker image classification algorithm. T
The correct answer is B. Use the Amazon Rekognition DetectLabels API to classify the products in the dataset. C. Augment the images in the dataset. Use open source libraries to crop, resize, flip, rotate, E. Use Amazon Rekognition Custom Labels to train a new model.. Three complementary strategies improve accuracy here. Option C (data augmentation) artificially increases dataset diversity by applying transformations like cropping, flipping, and rotation, helping the model generalize to new products. Option E (Amazon Rekognition Custom Labels)
Question
An ecommerce company is automating the categorization of its products based on images. A data scientist has trained a computer vision model using the Amazon SageMaker image classification algorithm. The images for each product are classified according to specific product lines. The accuracy of the model is too low when categorizing new products. All of the product images have the same dimensions and are stored within an Amazon S3 bucket. The company wants to improve the model so it can be used for new products as soon as possible. Which steps would improve the accuracy of the solution? (Choose three.)
Options
- AUse the SageMaker semantic segmentation algorithm to train a new model to achieve
- BUse the Amazon Rekognition DetectLabels API to classify the products in the dataset.
- CAugment the images in the dataset. Use open source libraries to crop, resize, flip, rotate,
- DUse a SageMaker notebook to implement the normalization of pixels and scaling of the
- EUse Amazon Rekognition Custom Labels to train a new model.
- FCheck whether there are class imbalances in the product categories, and apply
How the community answered
(18 responses)- A6% (1)
- B78% (14)
- D11% (2)
- F6% (1)
Explanation
Three complementary strategies improve accuracy here. Option C (data augmentation) artificially increases dataset diversity by applying transformations like cropping, flipping, and rotation, helping the model generalize to new products. Option E (Amazon Rekognition Custom Labels) provides a managed service purpose-built for custom image classification, typically requiring fewer labeled examples to reach production-quality accuracy quickly - aligning with the 'as soon as possible' requirement. Option B (Amazon Rekognition DetectLabels) leverages a pre-trained model to enrich the existing dataset with additional label context, supplementing the custom training. Option A (semantic segmentation) is designed for pixel-level tasks, not product categorization. Option D (normalization) is a minor preprocessing step that alone won't dramatically boost accuracy. Option F (class imbalance correction) is a valid concern but not among the top-three highest-impact steps compared to the chosen options.
Topics
Community Discussion
No community discussion yet for this question.