0
votes

Matlab -Neural Network Simulation (for Loop)

Thanks for your above answer using for loop. Now I want to save the trained network (which has been trained using 2 different input images(type 1 and type 2) and different target images(type 1 and type 2) ), after saving network I need to test the network for different images to classify them, whether they belongs to type 1 or type 2.

Please guide me how to proceed.

1

1 Answers

0
votes

You can retrieve the network and put it in your workspace with:

load net; % 

If you want to get predictions use:

perform(net,y)

I would suggest you run the network on a similar image matrix you used during training.