Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
build
Method · 0.95
Calls
1
forward_logits
Method · 0.95
Tested by
no test coverage detected