BADBADBADBOY / pytorchOCR

基于pytorch的ocr算法库,包括 psenet, pan, dbnet, sast , crnn
676 stars 133 forks source link

Paper 87.3% vs your implementation 83.44% #36

Closed seekingdeep closed 3 years ago

seekingdeep commented 3 years ago

The paper shows promising results of 87.3% F-measure on icdar2015, while your implementation scores ~ 83.5% How to achieve similar results to the main implementation? what is the difference between your implementation and the main?

fxwfzsxyq commented 3 years ago

The paper shows promising results of 87.3% F-measure on icdar2015, while your implementation scores ~ 83.5% How to achieve similar results to the main implementation? what is the difference between your implementation and the main?

In order to improve the effect, the author used Deformable convolution in the backbone and pre-trained on the sythtext data set, but it did not do in this project

seekingdeep commented 3 years ago

ok