Add missed DeformableConvolution to back transformations (#10255)

This commit is contained in:
Anton Chetverikov 2022-02-10 17:20:11 +03:00 committed by GitHub
parent 87f8ff5918
commit 50dffb80bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class BlobNormalizer(BackReplacementPattern):
@staticmethod @staticmethod
def pattern(): def pattern():
return dict( return dict(
nodes=[('conv', dict(type=lambda type: type in ['Convolution', 'Deconvolution', 'FullyConnected']))], nodes=[('conv', dict(type=lambda type: type in ['Convolution', 'Deconvolution', 'FullyConnected', 'DeformableConvolution']))],
edges=[] edges=[]
) )

View File

@ -33,6 +33,7 @@ class OpVersioning(BackReplacementPattern):
"ConvolutionBackpropData", "ConvolutionBackpropData",
"Cos", "Cos",
"Cosh", "Cosh",
'DeformableConvolution',
"DeformablePSROIPooling", "DeformablePSROIPooling",
"DepthToSpace", "DepthToSpace",
"DetectionOutput", "DetectionOutput",