MCPcopy Create free account
hub / github.com/rushter/MLAlgorithms / backward_pass

Method backward_pass

mla/neuralnet/layers/basic.py:171–176  ·  view source on GitHub ↗
(self, delta)

Source from the content-addressed store, hash-verified

169 return y
170
171 def backward_pass(self, delta):
172 n_timesteps = delta.shape[1]
173 X = delta.reshape(-1, delta.shape[-1])
174 y = self.dense.backward_pass(X)
175 y = y.reshape((-1, n_timesteps, self.input_dim))
176 return y
177
178 @property
179 def parameters(self):

Callers

nothing calls this directly

Calls 1

backward_passMethod · 0.45

Tested by

no test coverage detected