Fail to run yolov4

TensorRT Version : 7.2.1.6
GPU Type : V100
Nvidia Driver Version : 450.80.02
CUDA Version : 10.2
CUDNN Version : 8.1.1
Operating System + Version : Ubuntu18.04
Python Version (if applicable) : 3.6.9
DeepStream :5.0.0

I use the deepstream-app method to run yolov4, but I encountered the following difficulties,

  1. warning:

(deepstream-app:29540): GLib-GObject-WARNING **: 21:03:08.962: value “TRUE” of type ‘gboolean’ is invalid or out of range for property ‘sync’ of type ‘gboolean’

(deepstream-app:29540): GLib-GObject-WARNING **: 21:03:08.962: value “TRUE” of type ‘gboolean’ is invalid or out of range for property ‘qos’ of type ‘gboolean’

  1. PERF does not display FPS

    This is my txt configuration file, lp_v4.txt (4.0 KB)
    how should I solve this problem?

Thanks!

Hi @1210586191 ,
Sorry for delay!

Seems both sinks are disabled in your configure file, please enable one of the sinks, e.g. below change to enable sink0 with fakesink.

[sink0]
enable=0
#Type - 1=FakeSink 2=EglSink 3=File
type=2
sync=0
source-id=0
gpu-id=0
nvbuf-memory-type=0

----> change to

[sink0]
enable=1
#Type - 1=FakeSink 2=EglSink 3=File
type=1
sync=0
source-id=0
gpu-id=0
nvbuf-memory-type=0