how can i use weigths for prediction?

hi i am new on ANN. i can't understand how to use nn for forecasting. After training process i will get weigths and what is role of these weigths for prediction or how can i use these weigths for prediction? please explain to me anyone

 Accepted Answer

After training you will have a net with weights. Even if the number of weights is small, it is often difficult to understand what role each weight plays in obtaining the correct answer.
Furthermore, the number of weights, typically, far exceeds the number of inputs. In particular,
for a typical I-H-O net,
Nw = (I+1)*H+(H+1)*O >> I.
Consequently, most practitioners focus on the resulting output changes when certain inputs change.
Finally, when a net is to be used further, the whole net as a structure is usually transported rather than a collection of weights.
Hope this helps.
Greg

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Asked:

on 23 Apr 2015

Answered:

on 23 Apr 2015

Community Treasure Hunt

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

Start Hunting!