I understand the Caffe model is no longer supported. That’s why I later tried the resnet18-tagging-voc model, which uses the ONNX format, not Caffe. It got get past the original error, but two new problems came up: 1) it could not register the “plugin creator”, and 2) a Segmentation fault error occurred. See messages below: (full output is here: segmentation_fault.txt (8.4 KB))
jet@sky:~/jetson-inference/build/aarch64/bin$ imagenet --model=resnet18-tagging-voc --topK=0 --threshold=0.25 "images/object_*.jpg" images/test/tagging_%i.jpg
...
[TRT] Could not register plugin creator - ::FlattenConcat_TRT version 1
...
[TRT] binding to input 0 input_0 binding index: 0
[TRT] binding to input 0 input_0 dims (b=1 c=3 h=224 w=224) size=602112
[TRT] binding to output 0 output_0 binding index: 1
[TRT] binding to output 0 output_0 dims (b=1 c=1 h=20 w=0) size=80
Segmentation fault (core dumped)
.
Are there other ONNX based models I can try? Thank you.