I am trying to convert the "person-reidentification-retail-0277" model available in: (https://docs.openvino.ai/latest/omz_models_model_person_reidentification_retail_0277.html)
I get the following error
[ GENERAL_ERROR ]
/home/jenkins/agent/workspace/private-ci/ie/build-linux-ubuntu20/b/repos/openvino/inference-engine/src/vpu/graph_transformer/src/frontend/frontend.cpp:439 Failed to compile layer "736": [ GENERAL_ERROR ]
/home/jenkins/agent/workspace/private-ci/ie/build-linux-ubuntu20/b/repos/openvino/inference-engine/src/vpu/graph_transformer/src/stages/mvn.cpp:92 Unsupported combination of indices in layer "736". Only across channel and full batch supported.
I checked layer "736" in the .xml file, and it's a "const" layer:
<layer id="736" name="4221542218_const" type="Const" version="opset1">
<data element_type="f16" offset="1285852" shape="96,1,1,3,3" size="1728"/>
<output>
<port id="0" names="conv3.1.conv2d.3.conv2.weight" precision="FP16">
<dim>96</dim>
<dim>1</dim>
<dim>1</dim>
<dim>3</dim>
<dim>3</dim>
</port>
</output>
</layer>
Is there a workaround for this issue?
Thanks