Borrar filtros
Borrar filtros

How to predict with new inputs using a trained ANN for bodyfat_dataset

2 visualizaciones (últimos 30 días)
Yihan Chen
Yihan Chen el 28 de Mzo. de 2023
Respondida: Conor Daly el 28 de Mzo. de 2023
I have trained my ANN using the bodyfat_dataset. After that I created a new input matrix with 13 features and 18cases. However I didn't find any example of how to predict the new output.
load fatPred.csv
Xpred = fatPred;
predict(net,Xpred)
When i use this function, it says this only work with single inputs. I then tried
sim(net.Xpred)
The sim function gives me some outputs but I'm not sure if they are correct. Can someone help me understand how to use the predict function for my case please? Thank you.

Respuestas (1)

Conor Daly
Conor Daly el 28 de Mzo. de 2023
What you are doing with sim is correct. With a shallow neural network, you can perform inference in two ways:
Y = sim(net, X);
or
Y = net(X);

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by