Computes the values of the hidden layer
(self, input)
| 220 | dtype=theano.config.floatX) * input |
| 221 | |
| 222 | def get_hidden_values(self, input): |
| 223 | """ Computes the values of the hidden layer """ |
| 224 | return T.nnet.sigmoid(T.dot(input, self.W) + self.b) |
| 225 | |
| 226 | def get_reconstructed_input(self, hidden): |
| 227 | """Computes the reconstructed input given the values of the |