Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU)
nvidia GPU
• DeepStream Version
5.0.1
• JetPack Version (valid for Jetson only)
• TensorRT Version
7.0.0
• NVIDIA GPU Driver Version (valid for GPU only)
460.39
• Issue Type( questions, new requirements, bugs)
question
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
follow the steps I describe
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
Hello everyone.
I trained a Faster-RCNN nn using TLT’s example notebook (I added more epochs and made another minor changes, but the core and the dataset are just as the examples data)
I can train the netwonr, prune it, retrain it, test it, and deploy it to etlt with no problem.
The network works well when I do inference on the notebook, I can see good results even on new images from the internet
When I run it on deepstream-app, it’s another story. The app generates the .engine and runs successfully, but there are almost no detection on the sample videos.
I am using TLT and Deepstream on docker. Images are:
nvcr.io/nvidia/tlt-streamanalytics:v3.0-dp-py3
nvcr.io/nvidia/deepstream:5.0.1-20.09-devel
These are the files I use.
On the specs changes are done to the batches sizes and folder directories
default_spec_resnet18.txt (4.1 KB)
default_spec_resnet18_retrain_spec.txt (4.4 KB)
deepstream_app_config_fasterRCNN.txt (3.1 KB) config_infer_primary_frcnn.txt (2.2 KB)
frcnn_labels.txt (29 Bytes)
And these are my kitty outputs.
00_000_000024.txt
::::::::::::::
Car 0.0 0 0.0 29.439560 420.078003 329.627258 918.770020 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.968405
::::::::::::::
00_000_000025.txt
::::::::::::::
Car 0.0 0 0.0 17.687958 412.115479 331.289398 926.380310 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.699041
::::::::::::::
00_000_000026.txt
::::::::::::::
Car 0.0 0 0.0 41.543549 440.329987 330.368134 907.080933 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.858691
::::::::::::::
00_000_000027.txt
::::::::::::::
::::::::::::::
00_000_000028.txt
::::::::::::::
::::::::::::::
00_000_000029.txt
::::::::::::::
::::::::::::::
00_000_000030.txt
::::::::::::::
::::::::::::::
00_000_000031.txt
I can’t figure out what could I be missing for not having much detection.
Is there a problem on my config files?
Is there a known issue with the parser?
Thank you!