Error percentage calculated in excel and matlab not matching. why?

1 Ansicht (letzte 30 Tage)
Sunita
Sunita am 28 Nov. 2023
Kommentiert: Cris LaPierre am 28 Nov. 2023
I calculated error percentage for actual and predicted after ANN implementation using below code. Same I calculted using excel. both are not matching . why?
x = input';
t = output';
trainFcn = 'trainlm'; % Levenberg-Marquardt backpropagation.
hiddenLayerSize = 30;
net = fitnet(hiddenLayerSize,trainFcn);
net.divideParam.trainRatio = 80/100;
net.divideParam.valRatio = 10/100;
net.divideParam.testRatio = 10/100;
[net,tr] = train(net,x,t);
y = net(x);
e = gsubtract(t,y);
percentage_error = abs(t- y) / abs(t) * 100;
  1 Kommentar
Cris LaPierre
Cris LaPierre am 28 Nov. 2023
Without the data, it is impossible for us to say. Save your variables to file and attach that to your post using the paperclip icon.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu GPU Computing finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by