A two-layer network maps x∈R2 to y∈R2:
z=W1x+b1,h=ReLU(z),y=W2h+b2
with
W1=21−21−1312,b1=1−60−1,W2=(102−132−14),b2=(01)
The ReLU derivative is 1 where its input is positive and 0 where its input is negative.
The network is evaluated at
x=(21)
and the input is then nudged by
Δx=(0.1−0.2)
Using the network's Jacobian ∂x∂y evaluated at x, the predicted output change is Δy=JΔx.
What is ∥Δy∥2?
Round your answer to 2 decimal places.