Add missed DeformableConvolution to back transformations (#10255)
This commit is contained in:
parent
87f8ff5918
commit
50dffb80bb
@ -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=[]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -33,6 +33,7 @@ class OpVersioning(BackReplacementPattern):
|
|||||||
"ConvolutionBackpropData",
|
"ConvolutionBackpropData",
|
||||||
"Cos",
|
"Cos",
|
||||||
"Cosh",
|
"Cosh",
|
||||||
|
'DeformableConvolution',
|
||||||
"DeformablePSROIPooling",
|
"DeformablePSROIPooling",
|
||||||
"DepthToSpace",
|
"DepthToSpace",
|
||||||
"DetectionOutput",
|
"DetectionOutput",
|
||||||
|
Loading…
Reference in New Issue
Block a user