-
-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anyway to boost yolo performance on Jetson Orin? #605
Comments
Try to set the board to MAXN power.
You can set in the
|
I have had max power for jetson orin I think.
Great! speed up from ~50 FPS to almost 60FPS
OK
Is there any way to keep the bounding box(exstimate box) when using interval or equivalent method? Finally, what onnx is suitable for my jetson orin 8GB board? The real question right now is "I don't know how to make the best performance of the hardware" My goal is optimize the performance as follows:
From the And if it's possible for me (as the above condition and BYTETrack or NvTracker) to track specified object, only person, car, not the over all 80 classes (which might be more efficient, squeezing the performance a little bit)? EDIT: Does maxShadowTrackingAge should be large than |
Is there any document or link for calibration? |
Only with custom codes. It requires more complex changes on the codes. See https://github.com/NVIDIA-AI-IOT/deepstream_python_apps
You can use the dynamic (for dynamic batch), and the size depends on the trained size. For the COCO model, it should be the default (640). You can use lower resolution, but it will decrease the accuracy.
By default, I don't think so.
This isn't related to interval. It's related to how many frames the tracker will keep the object on the history when the object isn't detected by the inference. I recommend you to see the gst-nvtracker on the DeepStream website. |
Hi
I know that there is performance test on yolo documentation, which is deepstream-nvidia-jetson.
Yes, it's pretty cool. Here is my situation which is used for FPV realtime performance.
Pre-condition: (Jetson Orin Nano 8GB)
Now I got ~50FPS with above pre-condition. And I want to ask is there any way to boost FPS rate to or above 60FPS without changing resolution?
EDIT1: with
utils/export_*
exported model onnx file, I'm NOT sure how to configure engine file to be FP32?FP16?INT8 precision. As it seems INT8 precision can get high FPS rate.EDIT2:I found two issue
The text was updated successfully, but these errors were encountered: