All Projects → WenmuZhou → crnn.gluon

WenmuZhou / crnn.gluon

Licence: Apache-2.0 license
A gluon re-implementation of Convolutional recurrent network in gluon

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to crnn.gluon

Gluon Api
A clear, concise, simple yet powerful and efficient API for deep learning.
Stars: ✭ 2,322 (+10957.14%)
Mutual labels:  gluon
CycleGAN-gluon-mxnet
this repo attemps to reproduce Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks(CycleGAN) use gluon reimplementation
Stars: ✭ 31 (+47.62%)
Mutual labels:  gluon
lipnet
LipNet with gluon
Stars: ✭ 16 (-23.81%)
Mutual labels:  gluon
OcrLiteAndroidNcnn
Chineseocr Lite Android Onnx To Ncnn Demo,超轻量级中文OCR Android Demo,支持ncnn推理
Stars: ✭ 43 (+104.76%)
Mutual labels:  crnn
CRNN-OCR-lite
Lightweight CRNN for OCR (including handwritten text) with depthwise separable convolutions and spatial transformer module [keras+tf]
Stars: ✭ 130 (+519.05%)
Mutual labels:  crnn
gluon-firmware-selector
Firmware selector for gluon router images
Stars: ✭ 19 (-9.52%)
Mutual labels:  gluon
Gluon Nlp
NLP made easy
Stars: ✭ 2,344 (+11061.9%)
Mutual labels:  gluon
hellocalc
HelloCalc is a programable calculator for Android created with JavaFX.
Stars: ✭ 23 (+9.52%)
Mutual labels:  gluon
ResidualAttentionNetwork
A Gluon implement of Residual Attention Network. Best acc on cifar10-97.78%.
Stars: ✭ 104 (+395.24%)
Mutual labels:  gluon
Dog-Breed-Identification-Gluon
Kaggle 120种狗分类,Gluon实现
Stars: ✭ 45 (+114.29%)
Mutual labels:  gluon
Deepstream Project
This is a highly separated deployment project based on Deepstream , including the full range of Yolo and continuously expanding deployment projects such as Ocr.
Stars: ✭ 120 (+471.43%)
Mutual labels:  crnn
gluon-faster-rcnn
Faster R-CNN implementation with MXNet Gluon API
Stars: ✭ 31 (+47.62%)
Mutual labels:  gluon
crnn.mxnet
crnn in mxnet.can train with chinese characters
Stars: ✭ 47 (+123.81%)
Mutual labels:  crnn
Einops
Deep learning operations reinvented (for pytorch, tensorflow, jax and others)
Stars: ✭ 4,022 (+19052.38%)
Mutual labels:  gluon
python cv AI ML
用python做计算机视觉,人工智能,机器学习,深度学习等
Stars: ✭ 73 (+247.62%)
Mutual labels:  gluon
Gluon
A static, type inferred and embeddable language written in Rust.
Stars: ✭ 2,457 (+11600%)
Mutual labels:  gluon
BankCard-Recognizer
Identifying numbers from bankcard, based on Deep Learning with Keras [China Software Cup 2019]
Stars: ✭ 74 (+252.38%)
Mutual labels:  crnn
AESRC2020
a deep accent recognition network
Stars: ✭ 35 (+66.67%)
Mutual labels:  crnn
gluon2pytorch
Gluon to PyTorch deep neural network model converter
Stars: ✭ 72 (+242.86%)
Mutual labels:  gluon
crnn.caffe
crnn.caffe
Stars: ✭ 76 (+261.9%)
Mutual labels:  crnn

Convolutional Recurrent Neural Network

This software implements the Convolutional Recurrent Neural Network (CRNN) in gluon. Origin software could be found in crnn

Requirements

  • mxnet 1.5.0
  • mxboard

Data Preparation

Prepare a text in the following format

/path/to/img/img.jpg label
...

Train

  1. config the dataset['train']['dataset']['data_path'],dataset['validate']['dataset']['data_path'] in config.yaml
  2. generate alphabet use fellow script to generate alphabet.py in the some folder with train.py
python3 utils/get_keys.py
  1. use following script to run
python3 train.py --config_path config.yaml

Predict

predict.py is used to inference on single image

  1. config model_path, img_path in predict.py
  2. use following script to predict
python3 predict.py
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].