In perceptron learning problems, we need to choose such w0,w1,w2,…,wn so that sign (σ (w0 + w1⋅x1 + w2⋅x2 +… + wn⋅xn)) But I do not understand where to get this free member w0. How to form it?
Asked
Active
Viewed 19 times
0
-
You don't get it "from" anywhere, you choose it like any other `w_i` value. – Progman Oct 23 '21 at 10:29
-
@Progman randomly? Why is it needed then? – Roman Oct 26 '21 at 11:34
-
Check other questions like https://stackoverflow.com/questions/2480650/what-is-the-role-of-the-bias-in-neural-networks why you need a bias value, which does not depend on any input value. – Progman Oct 26 '21 at 17:16