APP DESIGNER: How to convert value input by user into array and test it using trained neural network?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nurliana Farhana Salehuddin
el 25 de Feb. de 2022
Comentada: Cris LaPierre
el 25 de Feb. de 2022
Dear MATLAB user,
I have been stucked with this problem for several days and I could not figure out what are my mistakes?
The aim of my app designer is to receive input from user > predict using trained neural network > show output at GUI
Problem that I face now is to convert the input variables (3 variables) by user into an array. This is because I used an array in the network. The code that I used:
T=table(app.Variable1.Value,app.Variable2.Value,app.Variable3.Value,);
T2=table2array(T);
but somehow I dont think this is the right way to do this.
0 comentarios
Respuesta aceptada
Cris LaPierre
el 25 de Feb. de 2022
Editada: Cris LaPierre
el 25 de Feb. de 2022
Why create a table just to turn it back into a matrix? Why not just concatenate the 3 variables? Since we know nothing about what the input looks like, here is a general suggestion
T2=[app.Variable1.Value,app.Variable2.Value,app.Variable3.Value];
You may need to transpose your variables depending on how the user inputs them to get your array to be organized the way your network expects.
2 comentarios
Nurliana Farhana Salehuddin
el 25 de Feb. de 2022
Editada: Nurliana Farhana Salehuddin
el 25 de Feb. de 2022
Cris LaPierre
el 25 de Feb. de 2022
You need to preprocess your actual data the exact same way you preprocessed your training data for your model to give meaningful results.
The way to get back to original values is to do the opposite of what mapstd is doing. You can see the algorithm used here. Just a note that I would not expect to get exactly the same values back, but they should be fairly close. You will need to use the mean and std values you passed into mapstd.
Más respuestas (0)
Ver también
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!