We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 386a2f9 commit 5d5d43cCopy full SHA for 5d5d43c
CNN/cnnbp.m
@@ -1,7 +1,7 @@
1
function net = cnnbp(net, y)
2
n = numel(net.layers);
3
4
- % error
+ % error
5
net.e = net.o - y;
6
% loss function
7
net.L = 1/2* sum(net.e(:) .^ 2) / size(net.e, 2);
0 commit comments