CNN-LSTM-CTC-text-recognition icon indicating copy to clipboard operation
CNN-LSTM-CTC-text-recognition copied to clipboard

CNN and LSTM model for text recognition

Results 14 CNN-LSTM-CTC-text-recognition issues
Sort by recently updated
recently updated
newest added

Hi every one Please I am desperate I am using google colab I installed Wrapctc successfully and install mxnet too but i can't find the config file to link the...

When I run this program in lstm.py file have a error, How can i deal with. Thanks sm = mx.sym.WarpCTC(data=pred, label=label, label_length = num_label, input_length = seq_len) D:\DeepLearning_Demo\CNN_LSTM_CTC\CNN-LSTM-CTC-text-recognition-master>python train_lstm.py Traceback...

When i tried to run train_crnn.py i'am facing the below error "**NameError: global name 'image_set_path' is not defined**" Please can any one suggest me ?

I have used your version of mxnet and warpctc downloaded from your BaiduYun. I built mxnet and warpctc successfully. Also, I enabled warpctc in mxnet. However, when I run the...

Thank you for your job. I found the last layers, the input layer to warpCTC is as following: `hidden_concat = mx.sym.Concat(*hidden_all, dim=0) pred = mx.sym.FullyConnected(data=hidden_concat, num_hidden=num_classes)` So the input size...

Hi, I looked into your code, in your crnn.py #132, wordvec shows with a squeeze axis =1. However, your data after flatten should be (batch_size, num_filters x reduced_width x reduced_height)....

I tried to train crnn with chinese scene text,i noticed that it's so slow than crnn in pytorch version~ i checked the code and i found the blstm is so...

Hi. In your code the num_label is fixed, and you pad zeros for short ones. Is it necessary? if not, Does it affect the speed of training?

INFO:root:begin fit INFO:root:Start training with [gpu(6), gpu(7)] iter Traceback (most recent call last): File "testcrnn.py", line 249, in epoch_end_callback = mx.callback.do_checkpoint(prefix, 1)) File "../../python/mxnet/model.py", line 811, in fit sym_gen=self.sym_gen) File...