image-similarity-deep-ranking
image-similarity-deep-ranking copied to clipboard
Typo in Lambda layer
Line 28 of deepRanking.py
contains the following:
x = Lambda(lambda x_: K.l2_normalize(x,axis=1))(x)
Should not we be passing x_
rather than x
to K.l2_normalize
?
yep, using that code we were receiving many strange errors during training phase. removing the underscore solved the problem for us