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

1 visualización (últimos 30 días)
Sunita
Sunita el 28 de Nov. de 2023
Comentada: Cris LaPierre el 28 de Nov. de 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 comentario
Cris LaPierre
Cris LaPierre el 28 de Nov. de 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.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre GPU Computing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by