Questions tagged [paddle-paddle]

79 questions
8
votes
5 answers

How does PaddleOCR performance compare to Tesseract?

I recently came across PaddleOCR and am wondering, how this OCR system compares to Tesseract. Is there any data or benchmarks available?
user123206
  • 107
  • 1
  • 1
  • 4
7
votes
2 answers

pyinstaller ModuleNotFoundError: No module named 'paddle'

I am using pyinstaller to create exe file on windows. I have created anaconda based virtual environment "py38" where I have installed all the packages. I am trying to convert a tkinter file namely "gui.py".When I run using normal python…
user3708629
  • 153
  • 1
  • 1
  • 7
6
votes
1 answer

Text detection by paddle ocr issue

I am trying to detect text from image after image processing by using paddlepaddle ocr. but paddle ocr is unable to detect the text. from paddleocr import PaddleOCR,draw_ocr ocr = PaddleOCR(use_angle_cls=True, lang='en') img_path = '123.jpg' result…
6
votes
0 answers

How to load a matrix to change the attention layer in seqToseq demo? - Paddle

While attempting to replicate the section 3.1 in Incorporating Discrete Translation Lexicons into Neural MT in paddle-paddle I tried to have a static matrix that I'll need to load into the seqToseq training pipeline, e.g.: >>> import numpy as np >>>…
alvas
  • 115,346
  • 109
  • 446
  • 738
5
votes
2 answers

ImportError: cannot import name 'inference' from 'paddle'

I am trying to implement paddleocr. I have installed it using: #Github repo installation for paddle ! python3 -m pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple #install paddle ocr !pip install paddleocr !git clone…
Vikas Kumar
  • 85
  • 1
  • 11
4
votes
5 answers

Reactjs & Paddle checkout

I'm using https://paddle.com/ as as payment processor for my software. I'm getting the error of Page Not Found Sorry, the page you were looking for could not be found. coming from Paddle and I wonder why, I have done everything correctly like on the…
3
votes
1 answer

`use_angle_cls` and `cls` arguments in PaddleOCR

I want to use PaddleOCR for my text detection and recognition task. But I couldn't find enough documentation about why they have used the arguments use_angle_cls and cls. The following code illustrates the text image inference in PaddleOCR. from…
npn
  • 304
  • 1
  • 14
3
votes
2 answers

PaddleOCR freezes on MacOs Ventura M1

This is my First ever post here I have been working on a python script to get text from photos using PaddleOCR. Obviously everything works as expected on Windows x64. I managed to install paddleocr successfully on my MacBook Pro M1 by manually…
MarcoT
  • 31
  • 2
3
votes
2 answers

Paddle - The checkout id must be a valid checkout id

I'm trying to test paddle subscriptions on localhost. When I use the product id and vendor id from an example git repo everything works. When I use my own vendor id and product id (plan id) I get a 400…
Starchand
  • 684
  • 1
  • 9
  • 23
3
votes
1 answer

Paddle with Nuxt/Vue.js

Has anyone implemented Paddle with Nuxt? Trying to run this within a Nuxt app page (component): I have…
3
votes
2 answers

Compare deep learning framework between TensorFlow and PaddlePaddle

I want to study on the research of deep learning, but I don't know which framwork should I choice between TensorFlow and PaddlePaddle. who can make a contrast between the two frameworks? which one is better? especially in the running efficiency of…
batu
  • 31
  • 2
2
votes
2 answers

PaddleOCR Error flag 'flagfile' was defined more than once

Am encountering an issue running PaddleOCR on M1 Macbook ERROR: flag 'flagfile' was defined more than once (in files '/Users/paddle/xly/workspace/f2bafd01-b80e-4ac8-972c-1652775b2e51/Paddle/build/third_party/gflags/src/extern_gflags/src/gflags.cc'…
user2392965
  • 435
  • 2
  • 4
  • 13
2
votes
3 answers

Problem at calling module paddleocr in Python with Anaconda

Good morning, I have been trying to install paddleOCR(https://github.com/PaddlePaddle/PaddleOCR) with anaconda and I tried to start it with the command line at cmd and it works fine: (paddle_env) C:\OCR>paddleocr --image_dir source/test.png…
1
vote
1 answer

How to improve PaddleOCR performance, it is sometimes not able to detect space in between words

I am working on data extraction from daily use items using paddleOCR, it is working fine in most of the cases but somethime it mixes two or more words as a single word it does not take space into action is there a better way to solve this thanks in…
1
vote
3 answers

Error: Can not import paddle core while this file exists

I am currently using intel i3 with no gpu, I created a virtual environment in python with python version 3.10.11, while my current python version is 3.11.3 In the virtual env I tried installing paddleocr using pip install paddleocv and pip install…
Jinen Rathore
  • 65
  • 1
  • 6
1
2 3 4 5 6