MATLAB: How to reuse the same neural network to recreate the same results I had while training/creating the network

Deep Learning Toolboxneural network

Hello,
I am new to neural networking, so my question may sound stupid.
I have trained/created a neural network, I have saved the script of the network, but each time I run the script, it gives different R values. How can I get the same R value I had while training the network and how do I plug in new input data to see the results by using the same network.

Best Answer

I don't think you want to save the script.
You want to save the net
save net
Hope this helps.
Greg