fixed shape typo (#2679)

* fixed shape typo

* pep8
This commit is contained in:
Brian McMahan 2016-05-10 01:17:12 -04:00 committed by François Chollet
parent 973b5570aa
commit 8327b37a0b

@ -30,7 +30,7 @@ def euclidean_distance(vects):
def eucl_dist_output_shape(shapes):
shape1, shape2 = shapes
return shape1
return (shape1[0], 1)
def contrastive_loss(y_true, y_pred):