You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Convolutional Connectionist-temporal-classification with Recurrent network(CCR)
This a project used to do Optical Character Recognition(ocr).
Train & Test
You can found more information of how to do in Readme.md of "CCR/CCR"
Deploy
Celery
Celery is an asynchronous task manager.
Celery support following message proxy(or called "Broker""): RabbitMQ, Redis, MongoDB, Beanstalk, SQLAlchemy, Zookeeper
RabbitMQ is the most suggested, and second is Redis. Due to RabbitMQ is more difficult to build, so we use Redis as Broker
# Install celery with dependency package
$ pip install "celery[librabbitmq,redis,msgpack]"
You can start your task manager by the following command:
$ celery worker -A celery_worker.celery -l INFO
Redis
Install Redis for Celery
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar xvzf redis-stable.tar.gz
$ cd redis-stable
$ make
$ sudo apt-get install tcl8.5-dev
$ make test
$ sudo apt install redis-server