Questions tagged [paddleocr]

57 questions
0
votes
1 answer

How to downgrade cuDNN version 8.1 to version 7.6 on Google Colab

I am currently doing an OCR technology project using only PaddleOCR and running only in GPU on Google Colab. Recently, Google Colab updated its cuDNN version from 7.6 to 8.1, which resulted in my training model being unable to work. The error…
0
votes
0 answers

Compiling PaddleLite (and other NDK projects) for Exynos devices?

I am trying to run PaddleOCR's android demo on my Samsung device which has an exynos processor. The demo complies successfully on my emulator (Pixel XL API 32) and moto device which have arm processor on them. However, it fails with the following…
0
votes
1 answer

Is there any way to find a specific word in OCR result

I am using paddleocr. I want to find a word/words in the OCR Result. For example the ocr output is "ilovepythonalot" And I want to find the word "love" using if Chose1 in ocrresult: #Chose1='love' print('true') else: print('false') the…
LorisKamp
  • 1
  • 2
0
votes
0 answers

Where can I find the PaddleOCR text classifier .tar file?

I'm using paddleOcr on windows, and when it comes to the point where I have to download the det, rec and text classifier files, I get the following error. requests.exceptions.SSLError: HTTPSConnectionPool(host='paddleocr.bj.bcebos.com', port=443):…
Yumna Albar
  • 115
  • 1
  • 2
  • 6
0
votes
2 answers

SSLError: HTTPSConnectionPool with "paddleocr"

I'm actually trying to use "paddleocr" with python I use a conda environnement i followed the guide on their github : https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.5/doc/doc_en/quickstart_en.md But when i try to execute this command…
0
votes
1 answer

PaddleOCR ValueError

I trained the Paddle detection model with my own custom data. I have exported it and converted it to the required model format using the command: python3 tools/export_model.py -c configs/det/det_r50_vd_db.yml -o…
Vikas Kumar
  • 85
  • 1
  • 11
0
votes
1 answer

Paddle OCR BoundingBox Format

I am working with Paddle OCR, I would like to know what is the output format for bbx off paddle OCR. I can not find in the github of Paddle. Here is my code. from paddleocr import PaddleOCR,draw_ocr ocr = PaddleOCR(use_angle_cls=False, lang='en',…
Ahmad Anis
  • 2,322
  • 4
  • 25
  • 54
0
votes
1 answer

Setup PaddleOCR on M1 Mac or Docker

I was wondering if anyone has a good guide to setup PaddleOCR on M1 Mac or Docker. I want to use PaddleOCR to read license plates. I’m open to any suggestions. Thanks in advance.
Jonah
  • 38
  • 5
-1
votes
2 answers

ModuleNotFoundError: No module named 'paddle.distributed'

I am trying to run the following code to train paddleOCR. import paddle import paddle.distributed as dist But I'm getting this error: ModuleNotFoundError: No module named 'paddle.distributed' Even after I have installed paddle-client.
Vikas Kumar
  • 85
  • 1
  • 11
-1
votes
2 answers

ModuleNotFoundError: No module named 'paddle.fluid.core_noavx'?

I install paddle_ocr and paddlepaddle packages also but i got an Error (ModuleNotFoundError: No module named 'paddle.fluid.core_noavx'). how to solve this type of error provide your suggestions here...below my code was attached from paddleocr…
Natarajan
  • 11
  • 1
  • 6
-2
votes
2 answers

How to get individual columns values into a list using Python

I have an image which is the extracted row of a table and it looks like this: I want to extract each column which is separated by vertical lines into a list. The expected output will be like this: ['Sl No','Description of…
ReaL_HyDRA
  • 314
  • 1
  • 18
1 2 3
4