whitespace

This commit is contained in:
James Hensman 2015-04-01 09:14:03 +01:00
parent 72de607199
commit 09c8d5a567

View file

@ -48,7 +48,7 @@ class MLP(Mapping):
# Backpropagation to hidden layer.
dL_dact = np.dot(dL_dF, self.W2.T)
dL_dlayer1 = dL_dact / np.square(np.cosh(layer1))
return np.dot(dL_dlayer1, self.W1.T)