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
Is your feature request related to a problem? Please describe.
I want to write a BLS with python backend that sends a request to a classifier with that has label_filename enabled in outputs. It's possible to do that with python tritonclient as InferRequestedOutput(name, class_count=top_k) that returns class names as well. It would be very handy to have the same functionality for pb_utils.InferenceRequest.
Describe the solution you'd like
I want to send a request from python backend to a classifier and get response that includes class probs along with class labels.
Describe alternatives you've considered
Duplicate labels.txt from the classifier to the python backend and parse values manually, but that includes duplication and extra code.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to write a BLS with python backend that sends a request to a classifier with that has label_filename enabled in outputs. It's possible to do that with python tritonclient as
InferRequestedOutput(name, class_count=top_k)
that returns class names as well. It would be very handy to have the same functionality forpb_utils.InferenceRequest
.Describe the solution you'd like
I want to send a request from python backend to a classifier and get response that includes class probs along with class labels.
Describe alternatives you've considered
Duplicate labels.txt from the classifier to the python backend and parse values manually, but that includes duplication and extra code.
The text was updated successfully, but these errors were encountered: