HDenseUet
HDenseUet copied to clipboard
Something confused about 'scale' module in denseUnet network
I am confused about 'scale' module in denseUnet network.Could you tell me what 'scale' module do in the network?Thank you so much!
it is familiar with Normalization. X_new = X_old * alpha + beta. At the initial stage, alpha = 1 beta = 0
Oh I know.Thanks a lot!
Is setting the parameter "affine=True" in nn.BatchNorm2d() the same as your ""scale?