Skip to content

Commit ee77417

Browse files
author
chiachunlu
committed
change argument in network.py to adapt to new changes in tensorflow
1 parent 878d3ab commit ee77417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kaffe/tensorflow/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def lrn(self, input, radius, alpha, beta, name, bias=1.0):
177177

178178
@layer
179179
def concat(self, inputs, axis, name):
180-
return tf.concat(values=inputs, concat_dim=axis, name=name)
180+
return tf.concat(values=inputs, axis=axis, name=name)
181181

182182
@layer
183183
def add(self, inputs, name):

0 commit comments

Comments
 (0)