clstm
                                
                                
                                
                                    clstm copied to clipboard
                            
                            
                            
                        A small C++ implementation of LSTM networks, focused on OCR.
It seems like the Circle CI continuous integration never worked. We can configure it with a circle.yml file, I can do that but I wouldn't know what to actually test...
When I run "./run-tests",I get this error. I've tried "scons -c && scons && sudo scons install" but it gave the same error of clstm.proto.o Help required.. > > >...
I'm trying to find the X start/end coordinates for an individual character. I'm able to get the "t" value from ctc.cc (trivial_decode) but it doesn't line up precisely with the...
hi, running ./run-tests gave me this, how can I fix this? ``` test-lstm.cc:81:3: error: use of undeclared identifier 'unlink' unlink("__test0__.clstm"); ^ test-lstm.cc:114:3: error: use of undeclared identifier 'unlink' unlink("__test__.clstm"); ^...
Hi I was just wondering that whether one could compile CLSTM on windows. As far as I know, Tensor flow is not available for windows. How much dependent clstm is...
I am a beginner in LSTM.My doubt is, with what I have understood LSTM wont do just OCR rather it will also try to predict the next word or character...
I suffered a lot to come to code clstm python with the original dataset using opencv2 and python. Hope this code helps other people trying to use clstm python. ```...
What Gradient Descent Method clstm is using? SGD? AdaGrad? NAG? RMSProp? Adam? I want to increase the speed of the learning. If clstm is not using adaptive learning rate algorithm,...
I am using a pretrained clstm language model and loading it. This is my code: ``` python def PredictWords(self,image): noutput = 3877 if self.lang == "EN": pass elif self.lang ==...
Text line height (target_height) and normalization style are fixed in the current branch. Here I add options for these parameters. Besides, training error is reported along with the testing error,...