Math Problem Statement

Which of the following weights generates the absolute value function, y = [x], for the following neural network:

h₁Relu(W11x), h₂ = ReLu(W12x), and y ReLu(W21h1+ W22h2). where the input is x and output is y? wij are the parameter values.

The best [W11. W12, W21, W22] combination is:

[1,-1,1, 1]

[1,-1,1,-1]

[0.5.0.5, -2, 2]

[1.5,0.5, -2, 2]

Solution