Skip to content

Commit ccd1a52

Browse files
authored
Merge pull request ethereon#2 from chiachun/master
change argument in network.py to adapt to new changes in tensorflow
2 parents 878d3ab + ee77417 commit ccd1a52

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)