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 157 discussion

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.)

  • A. Use the SageMaker semantic segmentation algorithm to train a new model to achieve improved accuracy.
  • 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, and adjust the brightness and contrast of the images.
  • D. Use a SageMaker notebook to implement the normalization of pixels and scaling of the images. Store the new dataset in Amazon S3.
  • E. Use Amazon Rekognition Custom Labels to train a new model.
  • F. Check whether there are class imbalances in the product categories, and apply oversampling or undersampling as required. Store the new dataset in Amazon S3.
Show Suggested Answer Hide Answer
Suggested Answer: CDF 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
tgaos
Highly Voted 2 years, 11 months ago
B CE is correct.
upvoted 8 times
...
MultiCloudIronMan
Most Recent 7 months ago
Selected Answer: CDF
(Option C): Using open source libraries to crop, resize, flip, rotate, and adjust the brightness and contrast of the images can increase the diversity of the training data, helping the model generalize better to new products1. (Option D): Normalizing and scaling the images can help the model learn more effectively by ensuring that the input data is consistent2. (Option F): Addressing class imbalances can prevent the model from being biased towards more frequent classes, improving its overall accuracy.
upvoted 1 times
...
salim1905
10 months, 2 weeks ago
Selected Answer: CDF
The questions says "The images for each product are classified according to specific product lines." why do we need Amazon Rekognition Custom Labels then?
upvoted 1 times
amlgeek
6 months, 3 weeks ago
Because the goal is to increase the accuracy of the existing model, not using a built-in service.
upvoted 1 times
...
...
kyuhuck
1 year, 2 months ago
Selected Answer: CEF
Option C is correct because augmenting the images in the dataset can help the model learn more features and generalize better to new products. Image augmentation is a common technique to increase the diversity and size of the training data. Option E is correct because Amazon Rekognition Custom Labels can train a custom model to detect specific objects and scenes that are relevant to the business use case. It can also leverage the existing models from Amazon Rekognition that are trained on tens of millions of images across many categories. Option F is correct because class imbalance can affect the performance and accuracy of the model, as it can cause the model to be biased towards the majority class and ignore the minority class. Applying oversampling or undersampling can help balance the classes and improve the model's ability to learn from the data
upvoted 4 times
...
endeesa
1 year, 5 months ago
Selected Answer: CDF
assuming improve accuracy of the (existing) solution
upvoted 3 times
...
Mickey321
1 year, 8 months ago
Selected Answer: CEF
Hopefully final answer this time CEF. was initially looking for D but changed to E now
upvoted 3 times
...
Mickey321
1 year, 8 months ago
Selected Answer: CDF
C & F for sure the confusion between D and E but lets go for D as E will need more steps
upvoted 1 times
...
kaike_reis
1 year, 8 months ago
Selected Answer: CDF
The question asks for quick solutions and to improve the classifier's accuracy. Since we want a quick fix, I'm going to avoid solutions that requires a new model implementation. Therefore, the alternatives that can improve the performance of the current classification are: Letter F, C and D. Letters B and E would bring a new development cost from zero and Letter A does not solve the classification problem.
upvoted 4 times
kaike_reis
1 year, 8 months ago
NVM, D is wrong!
upvoted 3 times
...
...
Mickey321
1 year, 9 months ago
Selected Answer: CDF
the three steps that would improve the accuracy of the solution are C (data augmentation), D (image normalization and scaling), and F (addressing class imbalances)
upvoted 2 times
Mickey321
1 year, 9 months ago
See community answer is CEF due to images all same dimension so D removed.
upvoted 1 times
...
...
vbal
1 year, 9 months ago
CEF : C&F for Overfitting; E : "Rekognition DetectLabel" is the general image labeling capability of Amazon Rekognition, which provides predefined labels for common objects and concepts out-of-the-box. On the other hand, "Rekognition Custom Labels" allows you to create custom models to detect specific labels or objects that are not covered by the default labels,
upvoted 1 times
...
ADVIT
1 year, 9 months ago
CEF better choose
upvoted 1 times
...
SRB1337
1 year, 10 months ago
Selected Answer: CDF
This is CDF. No idea why this is unclear here.
upvoted 2 times
...
ZSun
1 year, 11 months ago
The problem is about "Overfitting", because the new products doesn't work well. It is not about simply improve model accuracy. C is great answer, augmentation is for overfitting. D is wrong, because normalization of pixel is not for overfitting, and "all images have the same dimensions. no need for scaling, they are already scaled. F is for imbalance data. if the data is imbalanced, they should perform poor on both training and testing data(new product). And the new product should perform bad only on those cold category, not overall poor performance. B and E are all about Rokognition, one is Rekognition Detect label, a built-in image classification model; one is Rekognition Custom Labels, a pre-trained with fine-tuning model.
upvoted 2 times
...
cox1960
1 year, 12 months ago
Selected Answer: BCE
you fix images (C), train Rekognition with these images (E) and finally infer to get the classes (B)
upvoted 1 times
...
Ahmedhadi_
2 years ago
Selected Answer: CDF
Amazon Rekognition custom label model requires time, expertise, and resources, often taking months to complete. Additionally, it often requires thousands or tens-of-thousands of hand-labeled images to provide the model with enough data to accurately make decisions. The solution must be quick. https://aws.amazon.com/rekognition/custom-labels-features/
upvoted 1 times
Ahmedhadi_
2 years ago
Sorry, never mind my answer it's actually CEF.
upvoted 1 times
ZSun
1 year, 11 months ago
not F, think carefully what is imbalanced data? what is its effect? does it only affect new product?
upvoted 1 times
...
...
...
Mllb
2 years ago
Selected Answer: CEF
CEF is correct
upvoted 2 times
...
Chelseajcole
2 years, 1 month ago
Selected Answer: CEF
D seems doing nothing with new product
upvoted 2 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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago