clstm icon indicating copy to clipboard operation
clstm copied to clipboard

A small C++ implementation of LSTM networks, focused on OCR.

Results 46 clstm issues
Sort by recently updated
recently updated
newest added

I downloaded and installed this project from the master-branch-pre-devices-merge release. I undertook these steps: ``` sudo apt-get install scons libprotobuf-dev protobuf-compiler libpng-dev libeigen3-dev swig scons sudo scons install ``` The...

How to use the pyrnn.gz models created in ocropy for prediction in clstm, as clstm prediction seems faster than the ocropy's prediction?

question

Hi, taking [this example](https://github.com/tmbdev/clstm/blob/master/misc/lstm-uw3-py.ipynb) as a reference I wrote the following code: ``` import clstm import cv2 import numpy as np import matplotlib.pyplot as plt import os from scipy.ndimage import...

Great thanks for all superb work! Trying to run clstmocrtrain on CUDA, doesnt' seem to work. I've compiled everything with "scons -j7 gpu=1" (I've 8 cores). No errors were produced...

When I prepare test data like you do for ocropy. I run training with the command `save_name=models/model test_every=1001 save_every=1000 nhidden=1 display_every=1 report_every=1 clstmocrtrain trainfiles.txt testfiles.txt` But results are inaccurate even...

Hi, I'd like to know what is the recommended/optimal data preparation for training (and recognition, if different). For example: - is it better to use a grayscale image or a...

when I try to use command like this to compile `scons -j 4 gpu=1 clstmocrtrain clstmocr` but failed to enable GPU, what is the right things to do to use...

Load a pretrained model to retrain new samples will cause assert failed in `Codec::encode`, but start training from scratch, this problem probably not happens. see related issue #83 After digging...

bug

``` data-clear@dataclear:~/dev/ocr/clstm$ scons scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... g++ --std=c++11 -Wno-unused-result -o clstmfilter.o -c -g -O3 -DEIGEN_NO_DEBUG -DCATCH=catch -DCLSTM_ALL_TENSOR=1 -DNODISPLAY=1 -DTHROW=throw...

bug

Since the original Python bindings are not working anymore and are unlikely to be fixed/maintained in the future, I created new high-level bindings using Cython. The module is compatible with...