sim function of the neuralnetwork

19 vues (au cours des 30 derniers jours)
Rita
Rita le 20 Juin 2017
Modifié(e) : Greg Heath le 29 Juin 2017
I want to simulate the network that I got with the new data and I use results=sim(net, new data) should I normalize the new data? and to get the real value of the result of network I need to denormalize the results? Thanks for any idea

Réponses (3)

Mudambi Srivatsa
Mudambi Srivatsa le 27 Juin 2017
With the new_data, you can use the following command to simulate the network
results = sim(net, new_data)
Further, you can use the trained network to predict as follows:
output = net(new_data)
The following post might be helpful regarding the normalizing process:
https://www.mathworks.com/matlabcentral/answers/14590-neural-network-sim-net-input-gives-crazy-results

Greg Heath
Greg Heath le 28 Juin 2017
No.
The net automatically normalizes the input with mapminmax and denormalizes the output with the inverse.
Hope this helps
Thank you for formally accepting my answer
Greg
  1 commentaire
Rita
Rita le 28 Juin 2017
Thanks, Greg.I have not used mapminmax function.I just used newff and configure functions.But I have normalized the data manually before entering the network. So do I still need to normalize the new data and then simulate by the network?

Connectez-vous pour commenter.


Greg Heath
Greg Heath le 29 Juin 2017
Modifié(e) : Greg Heath le 29 Juin 2017
1. You didn't specify if this is
a. regression/curve-fitting (FITNET OR NEWFIT)
or
b. classification/pattern-recognition (PATTERNNET or NEWPR)
The current functions FITNET and PATTERNET are special cases of FEEDFORWARDNET whereas the obsolete functions NEWFIT and NEWPR are special cases of the obsolete function NEWFF.
2. In either case the DEFAULT is to automatically normalize inputs and de-normalize outputs with MAPMINMAX.
3. However, there are options to use either
a. MAPSTD
or
b. No normalization/de-normalization.
So, IT DEPENDS WHAT THE PROGRAM AUTHOR USED.
4. Personally, I prefer to
a. Use MAPSTD BEFORE THE NET for detecting outliers so I can
either modify or remove them.
b. Accept the default MAPMINMAX because I am too lazy to remove
it.
BOTTOM LINE: Your input should have the same summary statistics as the author's data. Then the net will automatically do the rest.
Hope this helps
Thank you for formally accepting my answer
Greg

Community Treasure Hunt

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

Start Hunting!

Translated by