Merge pull request #18048 from l-bat:onnx_torchvision

This commit is contained in:
Alexander Alekhin 2020-08-06 20:21:47 +00:00
commit 336627a776

View File

@ -1395,6 +1395,7 @@ void ONNXImporter::populateNet(Net dstNet)
inpShape.erase(inpShape.begin() + axis);
layerParams.type = "Reshape";
layerParams.set("axis", 0);
layerParams.set("dim", DictValue::arrayInt(&inpShape[0], inpShape.size()));
node_proto.set_input(0, sliceLp.name);
}