Submitted by Legitimate-Gold-8711 t3_10cpj1c in deeplearning
I used ocr for extract text from images, and I want to correct this text by using deep learning algorithm I have a dataset contains files for wrong text and files for correct text correspondent. want to train the model with these data and at last if I give the model a text with some wrong letters, then the model predict correct text
can you propose some algorithm that I can use for this problem and how use it.
is BERT algorithm works with this case?
shmollerup t1_j4htyot wrote
You could try something that works on a character level, like a sequence tobsequence model, or maybe a rnn approach like char2vec. Both approaches should work pretty good if you have enough training data