Please provide complete information as applicable to your setup.
Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) GPU
• DeepStream Version 6.3
• NVIDIA GPU Driver Version (valid for GPU only) 535
• Issue Type( questions, new requirements, bugs) question
I am trying to run a secondary classifier in DeepStream with multiple output heads (age and gender). Below is my configuration:
[property]
gpu-id=0
model-engine-file=age_gender.trt
labelfile-path=class_labels.txt
batch-size=16
network-type=1 # Classifier
process-mode=2 # Secondary GIE
gie-unique-id=2
output-blob-names=age_output;gender_output
input-object-min-width=10
input-object-min-height=10
#[class-attrs-all]
#threshold=0.5
I followed this discussion: How to use metadata from the secondary classifier in Python?.
However, in my implementation, class_meta = pyds.NvDsClassifierMeta.cast(class_obj.data)
returns None
.
Is there something I might be missing in my configuration or metadata parsing?