Question 9
Consider a dataset for a binary classification problem in which the labels are in :
| 1 | 1 | 1 |
| 1 | 1 | |
| 1 | 0 |
A perceptron is trained on this dataset using the perceptron learning algorithm starting with the initial weight vector as . Ignore the bias. The data-points are processed in the order in which they appear in the table, from top to bottom. If is the weight vector, use the following rule for prediction:
The perceptron converges to after updates to the weight vector. Note that the number of iterations of the training loop is not the same as the number of updates to the weight vector.
Based on the above data, answer the given subquestions.
(0, 0)
(0, 1)
(−1, 1)
(1, 1)