Neural Networks Warehouse
Artificial Intelligence Depot
"As knowledge increases, ignorance unfolds." -Kennedy
KNOWLEDGE MESSAGES SUBMIT SEARCH  
JNNS Net is Trained and Ready to Process Data, but how?
How do I process data in a supervised network?
 
• JNNS Net is Trained and Ready to Process Data, but how?

So I would really appreciate help with my dilemma:

I have trained a network using JNNS that consists of 2 inputs and 1 output. This was a supervised network for training.

My problem now is that I want to feed the network only the inputs and have it give me an output, which I do not know how to do. I do not want it to train anymore, just process the data and spit out the output.
How do I do this? I have read both the JNNS and the SNNS manuals and am still having trouble.

Any help would be greatly appreciative.
Thanks,
Ron

1 posts.
Thursday 12 October, 13:54
Reply
• Simulate

To train the NN you use the function train?
eg.[net, tr, Y, E] = train(net, P, T)

and then to use it you can either just write some script after its trained using the sim command
eg. output = sim(net, P_new)

or you can save the NN as an .mat file and then write a seperate script to 'call' the network?

Hope this helps,

Rach

6 posts.
Friday 13 October, 05:56
Reply