Resnet_2

 While building a deep network there are two problems:

1. in the forward propagation, the last few layers have almost no information about what the original image was.

2. in the backpropagation, the first few layers near the input hardly get any gradient update due to the vanishing gradient. 

to solve this problem, resnet use highway like connection and transfer raw information from the previous layer to later layers.




Till now we have used linear or non-linear transformation but here for 1st time we are not only transforming but add the raw input into transformation.




Comments

Popular posts from this blog

how to handle the imbalance class

How to calculate the number of Parameters