Unable to get intution on how this works

I am unable to understand how the ReLU will actually activate the input volume .I want to understand how the ReLU will work on this input volume and what will it output

The relu will get as input x+output of last batchnorm, and the relu will functions as it funtcions normally i.e. relu(x+batchnotm).

2 Likes

Hi, @Shubham_Singh3!

Just a quick note, as @gent.spah said, the x + output is an element-wise addition, so x and output should have the same dimensions. The original ResNet paper explains this perfectly if you want to dig deeper.

2 Likes