Merge pull request #12713 from antonioborondo:depthwise_convolution

pull/12919/head
Alexander Alekhin 6 years ago
commit c8fc8d210b
  1. 4
      modules/dnn/src/caffe/caffe_importer.cpp

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

Loading…
Cancel
Save