From 09c8d5a56769c974e9d6c417d0332237a23c9182 Mon Sep 17 00:00:00 2001 From: James Hensman Date: Wed, 1 Apr 2015 09:14:03 +0100 Subject: [PATCH] whitespace --- GPy/mappings/mlp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/mappings/mlp.py b/GPy/mappings/mlp.py index f0fe21e5..4afc2fa1 100644 --- a/GPy/mappings/mlp.py +++ b/GPy/mappings/mlp.py @@ -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)