Search found 1 match

by Al.Vioky
Tue Aug 02, 2022 10:17 pm
Forum: Whatever
Topic: Error Derivative in Backpropagation neural network from scracth
Replies: 0
Views: 14012

Error Derivative in Backpropagation neural network from scracth

First, I created the next forward propagate function First, I created the next forward propagate function # save activations per layer activations = [] for i in range(len(layers)): a = np.zeros(layers[i]) activations.append(a) self.activations = activations def forward_propagate(self, inputs): # the...

Go to advanced search