Consider the following table defining the sample inputs and corresponding target values for a perceptron model.
| Sample No |
x1 |
x2 |
target |
w1 |
w2 |
| S1 |
0 |
0 |
0 |
0 |
0 |
| S2 |
0 |
1 |
1 |
|
|
| S3 |
1 |
0 |
1 |
|
|
| S4 |
1 |
1 |
1 |
|
|
What shall be the value of updated weights after applying all the samples S1 to S4 (in the order S1, S2, S3, S4) to this model. Given that the initial weights w1=0, w * 2 = 0 , learning rate =0.1 and no bias is involved in the perceptron. The activation function for this perceptron is given below
y_observed = { 1 if yin > 0
0 if yin < 0