githubharald / SimpleHTR

Handwritten Text Recognition (HTR) system implemented with TensorFlow.
https://towardsdatascience.com/2326a3487cd5
MIT License
1.99k stars 893 forks source link

Word Beam Search Decoder #93

Closed shri1107 closed 3 years ago

shri1107 commented 3 years ago

Is it possible to upload the TFWordBeamSearch.so file in this repository or in CTCWordBeamSearch repository. In your code build.sh, it is not updated for latest Tensorflow 2.0 versions.

Also, in this project, the Word Beam Search Decoder is using TF custom operation. Can you also add in the code for NumPy operation (Python package). How it can be utilized in this Simple HTR project ? How to convert the tensorflow session output to a numpy array ?

githubharald commented 3 years ago

The SimpleHTR uses the Python package (moved away from the TF op as it causes many problems, e.g. it is not working with Windows). See instructions in README.