Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) jetson • DeepStream Version 6.3 • JetPack Version (valid for Jetson only) 6
• Issue Type( questions, new requirements, bugs) questions
Hello,
I am new to DeepStream and I am planning to deploy a multitask model. My model has two branches: one branch is for semantic segmentation with 3 classes, and the other branch is for object detection with 2 classes. I have a couple of questions:
Is it possible to deploy such a model in DeepStream?
I was planning to set the network-type to 100, as I saw in one of the tutorials. My idea is to use a tee element to split the pipeline into two branches, where I can apply different post-processing on each branch’s output. Something like this :
… ! nvinfer ! queue ! tee ! queue ! post-processing (plugin or probe) for object detection ! nvdsosd ! sink
! queue ! post-processing for semantic segmentation (plugin or probe) ! nvsegvisual ! sink
I would like to know if this approach is feasible.