tmbdev / clstm

A small C++ implementation of LSTM networks, focused on OCR.
Apache License 2.0
819 stars 223 forks source link

Missing last char of the line. #131

Open ShubhamAgarwal12 opened 7 years ago

ShubhamAgarwal12 commented 7 years ago

If I train "lstm1" instead of "bidi", it is almost always missing the last character in the output sentence. Is it expected behaviour?

amitdo commented 7 years ago

May I ask why do you train with 'lstm1'?

ShubhamAgarwal12 commented 7 years ago

I need a network which can predict faster. Bidirectional net is very slow.

amitdo commented 7 years ago

You can make clstm run >x2 faster! https://github.com/tmbdev/clstm/issues/70#issuecomment-310135513

ShubhamAgarwal12 commented 7 years ago

Thanks Amit!