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

A Machine Learning Specialist works for a credit card processing company and needs to predict which transactions may be fraudulent in near-real time.
Specifically, the Specialist must train a model that returns the probability that a given transaction may fraudulent.
How should the Specialist frame this business problem?

  • A. Streaming classification
  • B. Binary classification
  • C. Multi-category classification
  • D. Regression classification
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
ahquiceno
Highly Voted 3 years, 1 month ago
Answer B.
upvoted 28 times
...
SophieSu
Highly Voted 3 years, 1 month ago
B IS NOT CORRECT! Return the probability. Not the 1 or 0. D IS THE CORRECT ANSWER.
upvoted 14 times
mdboy93
1 year, 1 month ago
Regression Classification is a made-up term, any binary classifier makes decisions based on probability score.
upvoted 1 times
...
srinu3054
3 years, 1 month ago
there is nothing like regression classification. (instead it should have said logistic regression). It should be Binary. i.e., either fraud or non fraud. Even with probabilities, we have a threshold to decide the class.
upvoted 11 times
...
seanLu
3 years, 1 month ago
Logistic regression will give the probability, and logistic regression is a binary classification algorithm. https://machinelearningmastery.com/logistic-regression-for-machine-learning/
upvoted 9 times
...
...
Seoyong
Most Recent 1 week, 1 day ago
Streaming classification: is the process of organizing and categorizing large amounts of data that are continuously flowing. This data can include medical records, banking transactions, and internet records Binary Classification: Logistic Regression Multiclass Classification: Softmax regression Regression Classification is a made-up term
upvoted 1 times
Seoyong
1 week, 1 day ago
Random forest is the most suitable model for predicting fraudulent transactions. Answer is A
upvoted 1 times
...
...
ZumbaZim
8 months, 1 week ago
I always see that the community voting is more appropriate and the moderator answer looks out to be on wrong side. I see this for almost in 1 out of 5 questions. Which answer should we consider here as right one ??
upvoted 1 times
...
endeesa
11 months, 3 weeks ago
Selected Answer: B
Its definitely a classification problem, and between Binary and Streaming classification. Binary classification makes more sence
upvoted 1 times
...
Mickey321
1 year, 2 months ago
Selected Answer: B
Binary classification
upvoted 1 times
...
kaike_reis
1 year, 3 months ago
Selected Answer: B
B, easy.
upvoted 1 times
...
gusta_dantas
1 year, 3 months ago
B, obviously! from sklearn.linear_model import LogisticRegression log_reg = LogisticRegression() log_reg.fit(X_train, y_train) log_reg.predict_proba(X_test) =)
upvoted 2 times
...
rodrigus
1 year, 8 months ago
The correct solution obviously is binary classification. For the comment above that says that binary classfication doesn't returns a probablity (for example SVM(classification) only returns a class and logistic, RFClassifier, XGBoostClassifier gives a probability and also a class given a threshold), you should ask yourself if that a regressor model returns always a probability, that is, if there is a restriction in a regressor model to predict values only in [0,1].
upvoted 1 times
...
AjoseO
1 year, 9 months ago
Selected Answer: B
The Specialist is trying to determine whether a given transaction is fraudulent or not, which is a binary outcome (yes or no). Therefore, the problem should be framed as binary classification. The goal is to predict the probability of a transaction being fraudulent or not, and based on that, the Specialist can make a binary decision (fraudulent or not).
upvoted 2 times
...
Tomatoteacher
1 year, 10 months ago
Selected Answer: B
This is just binary classification, I don't understand how it could be anything else
upvoted 3 times
...
Sneep
1 year, 10 months ago
It's B. This business problem can be framed as a binary classification problem, where the goal is to predict whether a given transaction is fraudulent (positive class) or not fraudulent (negative class). The model should output a probability for each transaction, indicating the likelihood that it is fraudulent.
upvoted 2 times
...
DS2021
1 year, 10 months ago
Selected Answer: D
should be D
upvoted 1 times
...
RLai
1 year, 11 months ago
Logistic regression models the probability of the default class (e.g. the first class). For example, if we are modeling people’s sex as male or female from their height, then the first class could be male and the logistic regression model could be written as the probability of male given a person’s height.
upvoted 1 times
...
theprismdata
2 years, 6 months ago
I think the answer is B, fraud has various cases which hard to define. So, Classification result will be fraud or not fraud. If Multi-category classfication, must define case of fraud in detaily
upvoted 1 times
theprismdata
2 years, 6 months ago
More specifically, anomaly detection model will be needed
upvoted 1 times
...
...
KM226
2 years, 10 months ago
Selected Answer: B
I believe the answer is B: it a binary classification problem because we are classifying an observation into one of two categories and the target variable in this problem is limited to two options: fraudulent or not fraudulent
upvoted 3 times
...
lesh3000
3 years ago
well, regression classification is bullshit, I hope they formulate their questions better on the real exam. binary classification gives probability between 0 and 1
upvoted 3 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 ...