Question 11
A bank wants to predict whether a customer will default on a loan using a classification model. The bank collects data from past customers, which includes the following features:
- : Credit score (scaled between 0 and 1)
- : Monthly income (in $1000s)
- : Number of late payments in the past year
The target variable represents whether the customer defaulted (1 for default, 0 for no default). The data is provided in the table below:
| x | y |
|---|---|
| 0 | |
| 1 | |
| 0 | |
| 1 | |
| 0 |
The bank uses the following linear combination to compute :
The step function is used to classify the outcome:
Based on the above data, answer the given subquestions.
For the input x = [0.9, 5, 1], what will be the predicted output u(z)?
0
1
1.75
Cannot be determined