File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ void InfEngineNgraphNet::createNet(Target targetId) {
162162 CV_LOG_DEBUG (NULL , " DNN/NGRAPH: Add 'Result' output: " << output_node_it->first );
163163 CV_Assert (output_node_it->second );
164164 auto out = std::make_shared<ov::op::v0::Result>(output_node_it->second ->node );
165- std::string name = output_node_it->first + (output_node_it->second ->node .get_node ()->get_output_size () == 1 ? " " : " .0" )
165+ std::string name = output_node_it->first + (output_node_it->second ->node .get_node ()->get_output_size () == 1 ? " " : " .0" );
166166 CV_LOG_DEBUG (NULL , " DNN-IE: Change friendly name from " << out->get_friendly_name () << " to " << name);
167167 out->set_friendly_name (name);
168168 outs.push_back (out);
You can’t perform that action at this time.
0 commit comments