I prepared Feed Forward NN using the Neural Network Matlab toolkit in a dataset containing speech functions and accelerometer measurements. The Targetset contains two target classes for the dataset: 0 and 1. Training, verification, and performance are all fine, and I created code for this network.
Now I need to use this neural network in real time to recognize the pattern when it occurs and generate 0 or 1 when I test a new dataset against a previously trained NN. But when I issue the command:
c = sim(net, j)
Where "j" is the new data set [24x11]; instead of 0 or 1, I get this as the result (I assume that I get the percentage of the correct classification, but the classification result itself is missing):
c = Columns 1 through 9 0.6274 0.6248 0.9993 0.9991 0.9994 0.9999 0.9998 0.9934 0.9996 Columns 10 through 11 0.9966 0.9963
So, is there any team or way that I can really see the classification results? Any help is much appreciated! Thanks
source share