You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is not the image, it is the processing time.
I did Testing with PP-yolov-plus-s and yolov5-s both with coco models and evaluation with coco images. The prediction performance is 3 times less in Yolov5 (with pytorch)
I am doing object detection with a pp-yolo-plus-S model.
And I'm getting prediction time of 300mS approximately.
Using a model trained by model yolov5-S I'm getting predictions of 90mS.
How can I reduce the prediction time?
I am generating my prediction with the following structure:
`
from paddlex import create_pipeline, create_model
model_deteccion = create_model("PaddleX/output01/best_model/inference", device="GPU")
frame="myimage.jpg"
myPrediction=list(model_deteccion.predict(frame)
`
The text was updated successfully, but these errors were encountered: