hi all
i am trying feedforward neural network for predicion. I have trained the network. now i want to use this trained network for prediction. But how i should call the trained net in my code for prediction. One more thing, once the natwork is trained is it possible to save it. If it is, what will be the command.
Please hwelp me
thanx in advance
|
|
1
|
|
|
|
Reply
|
jayashree
|
12/21/2009 6:08:05 PM |
|
"jayashree gawade" <jayashree2k2@gmail.com> wrote in message <hgodi5$omg$1@fred.mathworks.com>...
> hi all
> i am trying feedforward neural network for predicion. I have trained the network. now i want to use this trained network for prediction. But how i should call the trained net in my code for prediction. One more thing, once the natwork is trained is it possible to save it. If it is, what will be the command.
> Please hwelp me
> thanx in advance
1. You can save your trained network with :
save net
% this will save the network called net as net.mat, you can then load it to the workspace with load net
2. To do your prediction, you can use sim(net, inputs). type doc sim
|
|
2
|
|
|
|
Reply
|
ade77
|
12/21/2009 6:47:04 PM
|
|