parseq
parseq copied to clipboard
Parseq with PyTorch >= 2.0
Hi! Is there a way to run Parseq with Pytorch >= 2.0? /Erik
Yes, you can do it using pytorch 2.0. All you need to do is pip install ocr_tamil and run the following code
from ocr_tamil.ocr import OCR
image_path = r"test_images\1.jpg" # insert your image path here
ocr = OCR()
texts = ocr.predict(image_path)
print(texts)
Nice one brother @gnana70