Computes the values of the hidden layer
(self, input)
| 173 | self.params = [self.W, self.b, self.b_prime] |
| 174 | |
| 175 | def get_hidden_values(self, input): |
| 176 | """ Computes the values of the hidden layer """ |
| 177 | return T.nnet.sigmoid(T.dot(input, self.W) + self.b) |
| 178 | |
| 179 | def get_jacobian(self, hidden, W): |
| 180 | """Computes the jacobian of the hidden layer with respect to |