How to save PaddleOCR model? How to load it afterwards from the saved file?
I'd like to have something like this:
import PaddleOCR
model = PaddleOCR(use_angle_cls=True, lang='en')
save_path = '/some/custom/path'
# Save model - how?
model.save(save_path,...) # How to write this?
# Load model - how?
model = # load model from save_path