嗨,我遇到了一个问题,加载模型失败了(作为附件,从tensorflow saved_model转换)。模型加载器是从openvino的示例代码“classification_sample”修改的。以下是错误消息。[INFO]将模型加载到插件中[错误]未知异常C:\英特尔\ computer_vision_sdk_2018.3.343 \ deployment_tools \ inference_engine \包括\细节/ ie_exception_conversion.hpp:80我发现错误发生在以下代码段中,文件“ie_plugin_cpp.hpp” ExecutableNetwork LoadNetwork(CNNNetwork network,const std :: map& config){ IExecutableNetwork :: Ptr ret; CALL_STATUS_FNC(LoadNetwork,ret,network,config); if(ret.get()== nullptr)THROW_IE_EXCEPTIONsaved_model.rar 16.1 MB以上来自于谷歌翻译以下为原文Hi, I experienced a problem and failed in loading a model (as attachment, convert from tensorflow saved_model).The model loader was modified from openvino's sample code "classification_sample". Following are error messages. [ INFO ] Loading model to the plugin[ ERROR ] Unknown exceptionc:\intel\computer_vision_sdk_2018.3.343\deployment_tools\inference_engine\include\details/ie_exception_conversion.hpp:80 And I found the error was occurred on following code segment, in file "ie_plugin_cpp.hpp" ExecutableNetwork LoadNetwork(CNNNetwork network, const std::map &config) {IExecutableNetwork::Ptr ret;CALL_STATUS_FNC(LoadNetwork, ret, network, config);if (ret.get() == nullptr) THROW_IE_EXCEPTION
2018-11-05 11:18