crnn.pytorch icon indicating copy to clipboard operation
crnn.pytorch copied to clipboard

关于模型结构最后两层的BN层

Open bolun365 opened this issue 2 years ago • 1 comments

    convRelu(5)
    cnn.add_module('pooling{0}'.format(3),
                   nn.MaxPool2d((2, 2), (2, 1), (0, 1)))  # 512x2x16
    convRelu(6, True)  # 512x1x16

发现代码的BN设置与原论文不同, 貌似这样效果确实更好些, 请问这样做的原因是?

bolun365 avatar Aug 30 '21 03:08 bolun365

It is true. After I compared the code and the original paper , I found the difference lied in the location and numbers of bn layers.

Zhang-O avatar Oct 27 '21 09:10 Zhang-O