@@ -738,29 +738,29 @@ def convert_upsample(params, w_name, scope_name, inputs, layers, weights):
738
738
739
739
740
740
AVAILABLE_CONVERTERS = {
741
- 'Conv' : convert_conv ,
742
- 'ConvTranspose' : convert_convtranspose ,
743
- 'Flatten' : convert_flatten ,
744
- 'Gemm' : convert_gemm ,
745
- 'MaxPool' : convert_maxpool ,
741
+ 'onnx:: Conv' : convert_conv ,
742
+ 'onnx:: ConvTranspose' : convert_convtranspose ,
743
+ 'onnx:: Flatten' : convert_flatten ,
744
+ 'onnx:: Gemm' : convert_gemm ,
745
+ 'onnx:: MaxPool' : convert_maxpool ,
746
746
'max_pool2d' : convert_maxpool ,
747
- 'AveragePool' : convert_avgpool ,
748
- 'Dropout' : convert_dropout ,
749
- 'BatchNormalization' : convert_batchnorm ,
750
- 'Add' : convert_elementwise_add ,
751
- 'Mul' : convert_elementwise_mul ,
752
- 'Sub' : convert_elementwise_sub ,
753
- 'Concat' : convert_concat ,
754
- 'Relu' : convert_relu ,
755
- 'LeakyRelu' : convert_lrelu ,
756
- 'Sigmoid' : convert_sigmoid ,
757
- 'Softmax' : convert_softmax ,
758
- 'Tanh' : convert_tanh ,
759
- 'Transpose' : convert_transpose ,
760
- 'Reshape' : convert_reshape ,
761
- 'MatMul' : convert_matmul ,
762
- 'Gather' : convert_gather ,
763
- 'ReduceSum' : convert_reduce_sum ,
764
- 'Constant' : convert_constant ,
765
- 'Upsample' : convert_upsample ,
747
+ 'onnx:: AveragePool' : convert_avgpool ,
748
+ 'onnx:: Dropout' : convert_dropout ,
749
+ 'onnx:: BatchNormalization' : convert_batchnorm ,
750
+ 'onnx:: Add' : convert_elementwise_add ,
751
+ 'onnx:: Mul' : convert_elementwise_mul ,
752
+ 'onnx:: Sub' : convert_elementwise_sub ,
753
+ 'onnx:: Concat' : convert_concat ,
754
+ 'onnx:: Relu' : convert_relu ,
755
+ 'onnx:: LeakyRelu' : convert_lrelu ,
756
+ 'onnx:: Sigmoid' : convert_sigmoid ,
757
+ 'onnx:: Softmax' : convert_softmax ,
758
+ 'onnx:: Tanh' : convert_tanh ,
759
+ 'onnx:: Transpose' : convert_transpose ,
760
+ 'onnx:: Reshape' : convert_reshape ,
761
+ 'onnx:: MatMul' : convert_matmul ,
762
+ 'onnx:: Gather' : convert_gather ,
763
+ 'onnx:: ReduceSum' : convert_reduce_sum ,
764
+ 'onnx:: Constant' : convert_constant ,
765
+ 'onnx:: Upsample' : convert_upsample ,
766
766
}
0 commit comments