Question 50:
You work as a machine learning specialist for a bank. Your bank management team is concerned about a recent increase in fraudulent transactions. You need to build a machine learning model to recognize fraudulent transactions in real-time. The following is a sample of the dataset you are using to train your model: | Transaction ID |Account ID|type|amount |source | … |fraud | |12576477 |37564378|debit |350.00|ATM | … |not_fraud | |39844569 |74897544|credit|756.23|ATM | … |not_fraud | |54986984 |55656753|credit|243.90|ATM | … |undetermined| |34567863 |27564378|debit |1250.00|ATM | … |fraud| You are using the fraudulent feature as your label. You have decided to use the linear learner built-in algorithm for your model. Which predictor type should you use for your linear learner?
Answer options:
A.binary_classifier B.regressor C.cross_entropy_loss D.multiclass_classifier