MCPcopy 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

fitMethod · 0.95
trainFunction · 0.45
get_costFunction · 0.45
predictFunction · 0.45
trainFunction · 0.45
get_costFunction · 0.45
predictFunction · 0.45
trainFunction · 0.45
get_costFunction · 0.45
predictFunction · 0.45
trainFunction · 0.45
predictFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected