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

Method backward_pass

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

Source from the content-addressed store, hash-verified

101 return self.activation(X)
102
103 def backward_pass(self, delta):
104 return self.activation_d(self.last_input) * delta
105
106 def shape(self, x_shape):
107 return x_shape

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected