AstarLight / Lets_OCR

A repository for OCR, which inlcudes some classical OCR algorithms Pytorch implementation such as CTPN, EAST and CRNN.
MIT License
656 stars 327 forks source link

MaxPool2d中窗口大小与步长的问题 #88

Open jiangmeixian opened 4 years ago

jiangmeixian commented 4 years ago

代码中self.pooling3 = torch.nn.MaxUnpool2d((1, 2), stride=(2, 1))是否应该修改为 self.pooling3 = torch.nn.MaxUnpool2d((2, 1), stride=(2, 1)),窗口大小与步长保持一直?