Avaneesh Sundararajan

Results 7 comments of Avaneesh Sundararajan

Hey @Janeqs-cx, regarding your original error. I have also faced the similar issue. installing numpy==1.23 before exporting to tensorrt format resolved the issue for me (I have tested it on...

Hey @glenn-jocher, I tried to make a simple code to replicate the issue. These are the changes to be made in [general.py](https://github.com/ultralytics/yolov5/blob/master/utils/general.py): 1) above the non_max_suppression() function call add the...

Hey @glenn-jocher, I have tried the strategies. pre allocating memory does not decrease the overall processing time. I am already processing in batches in my application. I could not find...

Hey @glenn-jocher, thanks for the possible suggestions. I have tried to move only the necessary tensors to the CPU asynchronously. Moving the entire prediction tensor also has a high overhead,...

Hey @glenn-jocher, due to reasons I have not had the time to change the detect.py code to process in batches to test my changes. This is my implementation of the...

please let me know