This commit is contained in:
Michael Oliver
2017-02-27 15:06:47 -08:00
parent 8db75c0619
commit 603e5188bb
+1 -1
View File
@@ -153,7 +153,7 @@ class CosineDense(Layer):
xWnorm = (xnorm * Wnorm)
output = K.dot(x, self.W)/xWnorm
output = K.dot(x, self.W) / xWnorm
if self.bias:
output += (self.b / xWnorm)
return self.activation(output)