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

A company sells thousands of products on a public website and wants to automatically identify products with potential durability problems. The company has
1.000 reviews with date, star rating, review text, review summary, and customer email fields, but many reviews are incomplete and have empty fields. Each review has already been labeled with the correct durability result.
A machine learning specialist must train a model to identify reviews expressing concerns over product durability. The first model needs to be trained and ready to review in 2 days.
What is the MOST direct approach to solve this problem within 2 days?

  • A. Train a custom classifier by using Amazon Comprehend.
  • B. Build a recurrent neural network (RNN) in Amazon SageMaker by using Gluon and Apache MXNet.
  • C. Train a built-in BlazingText model using Word2Vec mode in Amazon SageMaker.
  • D. Use a built-in seq2seq model in Amazon SageMaker.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
ayatkhrisat
Highly Voted 2 years, 5 months ago
Selected Answer: A
A should be the answer
upvoted 15 times
rb39
2 years, 1 month ago
it's a sentiment analysis problem => comprehend
upvoted 4 times
...
...
ckkobe24
Highly Voted 2 years, 5 months ago
Selected Answer: C
BlazingText can also do supervised text classification
upvoted 5 times
ef12052
2 weeks, 5 days ago
yes but only in TextClassification mode, note W2V mode... so A
upvoted 1 times
...
...
F1Fan
Most Recent 6 months, 3 weeks ago
Built-in BlazingText model using Word2Vec mode in Amazon SageMaker would likely be quicker to set up compared to using Amazon Comprehend for this specific use case. Since the problem statement mentions that the review data is already labeled with the correct durability result, preparing the training data should be relatively straightforward. Additionally, as a built-in algorithm, BlazingText is optimized and pre-configured for text classification tasks, reducing the need for extensive customization and configuration compared to using Amazon Comprehend for this specific use case. It's important to note that while BlazingText may be quicker to set up for this particular task, Amazon Comprehend offers a broader range of NLP capabilities and may be more suitable for other NLP tasks or scenarios where more customization and flexibility are required. However, given the time constraint of 2 days and the specific requirement of identifying product durability concerns from reviews, training a built-in BlazingText model using Word2Vec mode in Amazon SageMaker is likely to be the more direct and quicker approach to get a working solution set up and running.
upvoted 1 times
ef12052
2 weeks, 5 days ago
yes but only in TextClassification mode, note W2V mode... so A
upvoted 1 times
...
...
3eb0542
8 months ago
Selected Answer: C
Given the time constraint of 2 days and the need for a quick solution, the most direct approach would be to choose an option that provides a ready-to-use solution without the need for extensive customization or training. Among the given options, the most direct approach would be: C. Train a built-in BlazingText model using Word2Vec mode in Amazon SageMaker. This option allows you to leverage a pre-built model (BlazingText) that is optimized for text classification tasks. Word2Vec mode is suitable for analyzing text data and can quickly provide insights into sentiment or, in this case, concerns over product durability. This approach minimizes the need for extensive data preprocessing and model tuning, allowing you to focus on training and deploying the model within the given timeframe.
upvoted 2 times
...
rav009
9 months, 2 weeks ago
Selected Answer: A
Using a existing model to do the task in 2 days. A
upvoted 2 times
...
DimLam
1 year ago
Selected Answer: A
I would say A
upvoted 2 times
...
loict
1 year, 1 month ago
Selected Answer: A
A. YES - Amazon Comprehend with multi-class mode and Augmented manifest file B. NO - Gluon is for timeseries C. NO - still a lot of work after generating embedding D. NO - seq2seq is to generate text, we want to classify
upvoted 2 times
...
teka112233
1 year, 1 month ago
Selected Answer: A
To solve the problem in 2 days, and dealing with sentiment analysis so A will be the right answer using the comprehend AWS Comprehend is a natural language processing (NLP) service that uses machine learning to discover insights from text. It provides a range of functionalities, including detecting language and sentiment, extracting named entities and key phrases, and tagging parts of speech5. AWS Comprehend can automatically break down concepts like entities, phrases, and syntax in a document, which is particularly helpful for identifying events, organizations, persons, or products referenced in a document
upvoted 2 times
...
Mickey321
1 year, 1 month ago
Selected Answer: A
The most direct approach to solve this problem within 2 days is option A, train a custom classifier by using Amazon Comprehend. By doing so, you can use Amazon Comprehend, a natural language processing (NLP) service that uses machine learning to find insights and relationships in text, to create a custom classifier that can identify reviews expressing concerns over product durability. You can use the labeled reviews as your training data and specify the durability result as the class label. Amazon Comprehend will automatically preprocess the text, extract features, and train the classifier for you. You can also use Amazon Comprehend to evaluate the performance of your classifier and deploy it as an endpoint. This way, you can train a model to solve this problem within 2 days without requiring much coding or infrastructure management.
upvoted 2 times
...
vbal
1 year, 4 months ago
A: You can customize Amazon Comprehend for your specific requirements without the skillset required to build machine learning-based NLP solutions. Using automatic machine learning, or AutoML, Comprehend Custom builds customized NLP models on your behalf, using training data that you provide.
upvoted 1 times
...
Mllb
1 year, 6 months ago
Selected Answer: A
Comprehend can do Custom Classification
upvoted 2 times
...
Mllb
1 year, 6 months ago
Selected Answer: A
Comprehend can do Sentiment Analysis
upvoted 1 times
...
fez_2312
1 year, 7 months ago
The answer is C, because of the amount of data, and the time constraint. C is the most efficient solution. Conventionally A would be the right answer, but given the time constraint the answer is C.
upvoted 1 times
...
alp_ileri
1 year, 7 months ago
I would say blaze text. Cuz comprehend needs custom code, so we have only 2 days.
upvoted 2 times
...
ystotest
1 year, 10 months ago
Selected Answer: A
https://docs.aws.amazon.com/comprehend/latest/dg/how-document-classification.html
upvoted 1 times
...
cron0001
2 years, 5 months ago
Selected Answer: D
If the problem needs to be solved in 2 days I would avoid going with any customised solution which would eliminate A and B. As the data is labelled already we don't need an unsupervised algorithm therefore eliminating C. Which leaves us with D
upvoted 3 times
f4bi4n
2 years, 3 months ago
its exactly the opposite, because its needs to be ready in 2 day I would use Comprehend ;) You don't need to write code, you have the data already available, so its faster then D
upvoted 8 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