Code
Hub
Trending
Following
Digest
Workspaces
Connect
Indexed
MCP
copy
Index your code
hub
/
github.com/lazyprogrammer/machine_learning_examples
/ predict
Method
predict
rnn_class/mlp_parity.py:117–119 ·
view source on GitHub ↗
(self, X)
Source
from the content-addressed store, hash-verified
115
return
T.nnet.softmax(Z.dot(self.W) + self.b)
116
117
def
predict(self, X):
118
pY = self.forward(X)
119
return
T.argmax(pY, axis=1)
120
121
122
def
wide():
Callers
1
fit
Method · 0.95
Calls
1
forward
Method · 0.95
Tested by
no test coverage detected