EasyOCR
EasyOCR copied to clipboard
How do I load the directory where the model is stored
How do I use reader = easyocr.Reader(['ch_sim'], gpu=True) and load the local specified directory where the recognition network model is stored ,thank you!
Hello yumianhhuli You can check in https://github.com/JaidedAI/EasyOCR/blob/master/custom_model.md Once your model is trained keep in ~/.EasyOCR/model You can use as reader = easyocr.Reader(['ch_sim'], recog_network=your_model_name ,gpu=True) In my case root is my default folder so my path will be as /root/.EasyOCR/model/MyModelName