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
Hi, I am following the example code here to setup the GroundingDINO inferencing in triton. I am trying to run this line just once in my deployment, since the model shouldn't have to be built for every single prediction request. However, the inference only works correctly if I run it for each request. If I build just once, the first request is successful, and the subsequent requests return an invalid bounding box.
What is happening inside the build_model method that makes the model unusable for the next request ? It is not taking any input specific parameters it looks like ?
I think that this maybe due to a bug - in groundingdino.py
The features of the image set the first time. The next time the features exist and therefore the new image isn't updated.
Hi, I am following the example code here to setup the GroundingDINO inferencing in triton. I am trying to run this line just once in my deployment, since the model shouldn't have to be built for every single prediction request. However, the inference only works correctly if I run it for each request. If I build just once, the first request is successful, and the subsequent requests return an invalid bounding box.
What is happening inside the build_model method that makes the model unusable for the next request ? It is not taking any input specific parameters it looks like ?
Snippet I am using for reference:
The text was updated successfully, but these errors were encountered: