Recognize ConvolutionDepthwise as Convolution

This commit is contained in:
Antonio Borondo 2018-10-23 20:17:22 +01:00
parent d8ffddd075
commit 7a3cb2280b

View File

@ -379,6 +379,10 @@ public:
layerParams.blobs[1].setTo(1); // std
}
}
else if ("ConvolutionDepthwise" == type)
{
type = "Convolution";
}
int id = dstNet.addLayer(name, type, layerParams);