Consider a single perceptron with sign activation function. The perceptron is…
2017
Consider a single perceptron with sign activation function. The perceptron is represented by weight vector [0.4 −0.3 0.1]t and a bias θ=0. If the input vector to the perceptron is X=[0.2 0.6 0.5] then the output of the perceptron is :
- A.
1
- B.
0
- C.
- 0.05
- D.
- 1
Attempted by 60 students.
Show answer & explanation
Correct answer: D
Solution: Compute the weighted sum and apply the sign activation.
Compute the weighted sum (net input): w·x + θ = 0.4×0.2 + (−0.3)×0.6 + 0.1×0.5 + 0 = −0.05.
Apply the sign activation: sign(−0.05) = −1 because the net input is negative.
Therefore, the perceptron output is −1.