tx2 error happen when parsering the caffemodel

when my program running into the function “caffeToGIEModel” and stepped over the code ------" const IBlobNameToTensor* blobNameToTensor = parser->parse(deployFile.c_str(), modelFile.c_str(), *network,DataType::kFLOAT);"------error happens, shown as below:

ERROR: Parameter check failed at: Layers.h::PluginLayer::619, condition: (inputs[0]) != NULL

So how to solve the problem?

Hi,

Suppose this is the same issue from topic 1031589:
https://devtalk.nvidia.com/default/topic/1031589

Based on the log, the error occurs from the Plugin implementation and assert for the NULL inputs size.
It’s recommended to review your plugin implementation and model design in detail.
Please check if there is any incorrect tensor concatenation among layers.

Thanks.