MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / forward_output

Method forward_output

recommenders/rbm_tf_k.py:223–224  ·  view source on GitHub ↗
(self, X)

Source from the content-addressed store, hash-verified

221 return dot2(Z, self.W) + self.b
222
223 def forward_output(self, X):
224 return tf.nn.softmax(self.forward_logits(X))
225
226 def transform(self, X):
227 # accepts and returns a real numpy array

Callers 1

buildMethod · 0.95

Calls 1

forward_logitsMethod · 0.95

Tested by

no test coverage detected