Questions tagged [paddle-paddle]

79 questions
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

Breakout game Java - paddle going off right side of screen

i've got an issue with my breakout game in java. Everything works well other than my paddle going off the screen on the right side, my ball does this too, but not worried about that right now. // prevent paddle from moving outside of the…
LJay
  • 11
  • 1
0
votes
1 answer

Unable to swap plans during trial with Laravel Cashier Paddle

According to Cashier docs, you should be able to swap Paddle plans while being on trial, moreover trial itself should be maintained: To update the subscription plan for a user, you should pass the Paddle plan's identifier to the subscription's swap…
Norbert Jurga
  • 204
  • 4
  • 14
0
votes
0 answers

paddle code runtime error (PreconditionNotMet)

RuntimeError: (PreconditionNotMet) The third-party dynamic library (cublas64_102.dll;cublas64_10.dll) that Paddle depends on is not configured correctly. (error code is 126) Suggestions: Check if the third-party dynamic library (e.g. CUDA, CUDNN)…
user13559640
0
votes
1 answer

getting TypeError: 'TextDetector' object is not callable

My TextDetector object is a blueprint of a class but still not able to call it. it was working before but now it is not working. Don't know why it happened. Can anyone of you give me a reason for this TypeError? import predict_det #from predict_det…
user13559640
0
votes
1 answer

Getting error while pip installing paddle for OCR

While running the below command I am getting the below error as popup and few more errors in the CMD. I am not able to understand what is the problem. Please advise. popup error: the procedure entry point…
user13559640
0
votes
1 answer

Recognize poorly visible digits on an image with same color

I'm trying to extract digits from an image using Tesseract/PaddleOCR to recognize text from cropped images. I'm using OpenCV to preprocess the image for better recognition. I tried applying a Gaussian blur and a Threshold method for binarization,…
anand
  • 1
0
votes
1 answer

How to test external POST call that receives query parameters as arrays instead of single values?

Has anybody successfully managed to write tests for a Paddle webhook in a Django application? Paddle sends messages as POST requests to a webhook. According to Paddle's webhook testing an exemplary request looks like this: [alert_id] =>…
Windowlicker
  • 498
  • 11
  • 18
0
votes
1 answer

Pong Game via Javascript: Player Paddle to remain within the Canvas Area

I am teaching kids about the basic and simplest way of designing and coding the Pong Game via Javascript in the p5 editor. I just have a question regarding the initial phase of designing. The code is as follows: function setup() { …
0
votes
0 answers

Unable to install swig and swig decoders in Redhat 7 or ubuntu

I have installed the swig and swig decoder package from the below methods: Swig: yum install swig Swig Decoders: Clone https://github.com/PaddlePaddle/DeepSpeech/ Cd into decoders/swig/ and run ./setup.sh Problem: When I am importing the swig…
Rituraj kumar
  • 349
  • 1
  • 4
  • 15
0
votes
1 answer

How to deploy a PaddlePaddle Docker container with GPU support?

There're slight discrepancies in the documentation Docker deployment for PaddlePaddle as compared to the documentation to manually install PaddlePaddle from source. The documentation from the Docker deployment states after pulling the container from…
alvas
  • 115,346
  • 109
  • 446
  • 738
0
votes
0 answers

How to add layers to RNN Encoder-Decoder network in SeqToSeq demo for Paddle?

I'm trying to add an additional encoder and decoder layers to the RNN SeqToSeq network in the paddle-paddle text generation demo like in the GNMT paper: https://arxiv.org/pdf/1609.08144v2.pdf At the code point…
alvas
  • 115,346
  • 109
  • 446
  • 738
0
votes
1 answer

How to install Baidu's PaddlePaddle on ubuntu 16.04?

I recently wanted to install PaddlePaddle on ubuntu 16, but there's a missing dependency, the package requires libgflags2, I couldn't find this library on Ubuntu's canonical repos, I found libgflags2v5 instead, so I played a little with the paddle's…
Kareem
  • 259
  • 1
  • 3
  • 13
0
votes
2 answers

How to resolve "cudaSuccess = err (0 vs. 8)" error on Paddle v0.8.0b?

I have installed paddlepaddle using the .deb file from https://github.com/baidu/Paddle/releases/download/V0.8.0b1/paddle-gpu-0.8.0b1-Linux.deb I have CUDA 8.0 installed with cudnn v5.1 without the NVIDIA Accelerated Graphics Driver on a machine…
nat gillin
  • 51
  • 5
-1
votes
1 answer

Adding date to database from Paddle webhook payload (Laravel)

I'm building this with Wave, which is just kit type thing that implements a few things that you need to get a SaaS off the ground quickly...one of the things it has configured is Paddle. Unfortunately it does not have an option to where if a user…