Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/lazyprogrammer/machine_learning_examples
/ forward
Method
forward
ann_class2/theano_ann.py:118–122 ·
view source on GitHub ↗
(self, X)
Source
from the content-addressed store, hash-verified
116
plt.show()
117
118
def
forward(self, X):
119
out = X
120
for
h in self.layers:
121
out = h.forward(out)
122
return
out
123
124
def
score(self, X, Y):
125
P = self.predict_op(X)
Callers
13
fit
Method · 0.95
train
Function · 0.45
get_cost
Function · 0.45
predict
Function · 0.45
train
Function · 0.45
get_cost
Function · 0.45
predict
Function · 0.45
train
Function · 0.45
get_cost
Function · 0.45
predict
Function · 0.45
train
Function · 0.45
predict
Function · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected