weinman / cnn_lstm_ctc_ocr

Tensorflow-based CNN+LSTM trained with CTC-loss for OCR
GNU General Public License v3.0
498 stars 170 forks source link

ctc_beam_search_decoder_trie Tensorflow Operator not found #43

Closed thomasdhc closed 5 years ago

thomasdhc commented 5 years ago

I was unable to find a Tensorflow operator called ctc_beam_search_decoder_trie. Was this a custom Tensorflow operator you created?

Thanks!

weinman commented 5 years ago

Yes, it's custom. See #34 The implementer didn't finish it and it doesn't work correctly, so I recommend you look at CTCWordBeamSearch

thomasdhc commented 5 years ago

Thank you!