faustomorales / keras-ocr

A packaged and flexible version of the CRAFT text detector and Keras CRNN recognition model.
https://keras-ocr.readthedocs.io/
MIT License
1.36k stars 347 forks source link

Can I get Korean Text from Image? Using keras-ocr #233

Open onlyfocusman opened 1 year ago

onlyfocusman commented 1 year ago

I tried english and korean but Actual and Predicted value is not matched ... Is it possible Match actual value and predicted values ? with Need train Korean? if so, How can I do traing? I wish Korean prediction value :) I attached image thank you in advance.^^ 111

seansteel3 commented 11 months ago

You're going to need to do some retraining with your own dataset @onlyfocusman . This guide shows how to retrain the model "from end to end:" https://keras-ocr.readthedocs.io/en/latest/examples/end_to_end_training.html

The guide assumes you have a dataset procured and prepped for training already (or that you're using the provided one). So if you don't have the data ready, then that's obviously the first step.

I've had pretty amazing success just following that guide, but that was with ASCII character sets. Hopefully someone who has worked with non-ASCII characters can provide some insight or tips/tricks/pitfalls when retraining with other characters.

Good luck!