MCPcopy 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
122def wide():

Callers 1

fitMethod · 0.95

Calls 1

forwardMethod · 0.95

Tested by

no test coverage detected