did i need target matrix for new input testing??
Afficher commentaires plus anciens
hi...i create neural network....the input matrix is with 18X20...(18= number of features and 20 = number of images for 2 classes)the target matrix is 2X20...after traning i want test the network with new image...the new enter images is matrix of 18X1.. i used this method for testing it:
simpleclassOutputs = sim(mynet11,input); figure();plotroc(T,simpleclassOutputs);
T= is target matrix which used in traning>> the error is ... Index exceeds matrix dimensions.
note: i used R2013a matlab and i am new in neural network
Error in plotconfusion>update_plot (line 396) y = y(:,known);
Error in plotconfusion (line 108) plotData = update_plot(param,fig,plotData,update_args{:});
Error in train (line 223) figure,plotconfusion(T,out);
my question is: how to sove this problem?? did i need target matrix for new input testing?? plz help me/
Réponse acceptée
Plus de réponses (3)
primrose khaleed
le 15 Juin 2014
0 votes
2 commentaires
Greg Heath
le 16 Juin 2014
class = vec2ind(output) will give a 1 or 2 for each column of output.
If you know the correct class you can count the errors for each class and obtain the class per cent error rates.
Since each class is defined by multiple examples, how do you want to display the correct answer as a single image? The mean of the class members or the member that is the most similar?
Your choice.
primrose khaleed
le 16 Juin 2014
Modifié(e) : primrose khaleed
le 16 Juin 2014
primrose khaleed
le 15 Juin 2014
0 votes
3 commentaires
Greg Heath
le 16 Juin 2014
Sorry, I am not familiar with image functions.
primrose khaleed
le 16 Juin 2014
Image Analyst
le 17 Juin 2014
Did you read his comment, and his flag?
primrose khaleed
le 17 Juin 2014
2 commentaires
Greg Heath
le 18 Juin 2014
No, it is not correct. You used the ANSWER block instead of the COMMENT BLOCK.
plotconfusion is for matrices (not vectors) of the same size. Use confusion otherwise.
primrose khaleed
le 18 Juin 2014
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!