mikeful t1_iwui31v wrote on November 18, 2022 at 1:24 PM Reply to [P]Modern open-source OCR capabilities and which model to choose by Rodny_ I've used EasyOCR for number recognition tasks. Works fairly well. https://github.com/JaidedAI/EasyOCR Tried to speed up recognition by running task tuned segmentation model and cropping input image on good detection but EasyOCR seemed to work better without it. Permalink 4
mikeful t1_ivxqhgi wrote on November 11, 2022 at 11:55 AM Reply to [R] ZerO Initialization: Initializing Neural Networks with only Zeros and Ones by hardmaru Neat. You could try to initialize them to 0.1 or 0.9 as it's unlikely that weights will stay at zero or one after training anyway. Permalink 1
mikeful t1_iwui31v wrote
Reply to [P]Modern open-source OCR capabilities and which model to choose by Rodny_
I've used EasyOCR for number recognition tasks. Works fairly well. https://github.com/JaidedAI/EasyOCR
Tried to speed up recognition by running task tuned segmentation model and cropping input image on good detection but EasyOCR seemed to work better without it.