tensorflow/tensorrt

Error running example on jetson tx2

mehulsuresh opened this issue · 1 comments

hey trying to run the tensorrt example and io keep getting this error
Any help is appreciated thanks

Converting ssd_inception_v2_coco to trt…
2020-03-25 12:56:57.029303: F tensorflow/core/util/device_name_utils.cc:92] Check failed: IsJobName(job)
Aborted (core dumped)

Solved! solution was to add this line force_nms_cpu=False in build_detection_graph
frozen_graph, input_names, output_names = build_detection_graph(
config=config_path,
checkpoint=checkpoint_path,
force_nms_cpu=False
)