Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit e5be508

Browse files
committed
Refactoring and version update
1 parent c9acbe7 commit e5be508

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

caffe2onnx/src/OPs/Eltwise.py

-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,12 @@ def createEltwise(layer, nodename, inname, outname, input_shape):
1717
def __createMul(layer, nodename, inname, outname, input_shape):
1818
output_shape = input_shape[0]
1919
node = Node.c2oNode(layer, nodename, "Mul", inname, outname, input_shape, output_shape)
20-
print(nodename, " node construction completed")
2120
return node
2221

2322
##---------------------Add layer, which may be the addition of two intermediate layer outputs, or it may be an output plus a bias------------------------##
2423
def __createAdd(layer, nodename, inname, outname, input_shape):
2524
output_shape = [input_shape[0]]
2625
node = Node.c2oNode(layer, nodename, "Add", inname, outname, input_shape, output_shape)
27-
print(nodename, " node construction completed")
2826
return node
2927

3028
##----------------------------------------------Max-------------------------------------------------------------##

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# package metadata
55
NAME = 'caffe2onnx'
6-
VERSION = '1.1.2'
6+
VERSION = '1.1.3'
77
DESCRIPTION = 'Convert Caffe models to ONNX.'
88
LICENSE = 'BSD-3'
99
GIT = 'https://github.com/asiryan/caffe-onnx'

0 commit comments

Comments
 (0)