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

Method get_hidden_values

code/cA.py:175–177  ·  view source on GitHub ↗

Computes the values of the hidden layer

(self, input)

Source from the content-addressed store, hash-verified

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

Callers 1

get_cost_updatesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected