Merge pull request #12713 from antonioborondo:depthwise_convolution

This commit is contained in:
Alexander Alekhin 2018-10-24 09:17:56 +00:00
commit c8fc8d210b

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);