crnn icon indicating copy to clipboard operation
crnn copied to clipboard

Convolutional Recurrent Neural Network (CRNN) for image-based sequence recognition.

Results 91 crnn issues
Sort by recently updated
recently updated
newest added

I can not find any config about the learning rate in config.lua,and the current learning rate also can not be display at each iteration during training.Do you have any idea...

From your paper, I learned in testing phase, the input image is scaled to a fixed height 32 with a variable width. This could be very useful if the length...

@bgshih The text data that I want to recognize involves currency symbols like dollar sign, euro sign, Indian rupee sign etc. Most of these are not present in the ASCII...

I ran the demo codes using the pretrained model and I seem to be getting around 86% word-level accuracy on the IIIT5k dataset whereas the paper suggests ~80% accuracy. Were...

I find a interesting place , in your implement of BLSTM ,: ``` local fwdProj = nn.Linear(nIn, nOut)(fwdX) local bwdProj = nn.Linear(nIn, nOut)(bwdX) local output = nn.CAddTable()({fwdProj, bwdProj}) ``` I...

I want to change you code to train rgb image? In the below image, I guess the 1 means gray image? But the image to train, it's width and height...

In the code the width is 100, how to change it to variable width,and use the rgb image. such as the theme

@bgshih crnn is a very great project, thanks for your open. Have you ever added stn to crnn? I tried to add the stn layer(https://github.com/qassemoquab/stnbhwd) to crnn, but the train...

Is there any possible to use cudnn.BLSTM to replace bidirectionalLSTM and use Baidu's warp_ctc to replace CtcCriterion?Thus i can use cudnn to boost the system.