I am using Jetson Nano with Jetpack 4.2
Tensor RT Version : 5.0.6.3
Tensorflow version: 1.13.1
CUDNN version : 7.3.1
I tried with ssd_mobilenet_v1_coco custom trained model with my own dataset in win10
Tensorflow-Gpu version: 1.15.0
downloaded ssd_ mobilenet_v1 model from https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md
but the following error occurred:
[TensorRT] ERROR: UFFParser: Validator error: Cast: Unsupported operation _Cast
So, I added following line
“Cast”:Input
But I got the error,
“[TensorRT] ERROR: UFFParser: Parser error: BoxPredictor_0/Reshape: Reshape: -1 dimension specified more than 1 time”
I think object detection API version is high,
so I tried the version==518c1c,trained my model
it not works.
then I used Tensorflow-cpu version==1.12.0,object detection API version ==518c1c,
it can convert the pb files into UFF well.
you know,cpu is slow.then I tried Tensorflow-Gpu version==1.15.0,object detection API version==518c1c,trained my model and export pd file with tensorflow-cpu,
it also can works.