Hacker News new | ask | show | jobs
by Govindae 3247 days ago
Am I understanding this correctly? The layers do not combine their inputs. Equation (2)

x_l = H_l([x_0, x_1, . . . , x_l−1])

Could be re-written: x_l = [H_l(x_0), H_l(x_1), . . . , H_l(x_l−1)]

1 comments

No, inputs to each layer are concatenated before being passed through H.