MCPcopy Index your code
hub / github.com/lisa-lab/DeepLearningTutorials / get_hidden_values

Method get_hidden_values

code/dA.py:222–224  ·  view source on GitHub ↗

Computes the values of the hidden layer

(self, input)

Source from the content-addressed store, hash-verified

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

Callers 1

get_cost_updatesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected