did i need target matrix for new input testing??
Mostra commenti meno recenti
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/
Risposta accettata
Più risposte (3)
primrose khaleed
il 15 Giu 2014
0 voti
2 Commenti
Greg Heath
il 16 Giu 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
il 16 Giu 2014
Modificato: primrose khaleed
il 16 Giu 2014
primrose khaleed
il 15 Giu 2014
0 voti
3 Commenti
Greg Heath
il 16 Giu 2014
Sorry, I am not familiar with image functions.
primrose khaleed
il 16 Giu 2014
Image Analyst
il 17 Giu 2014
Did you read his comment, and his flag?
primrose khaleed
il 17 Giu 2014
2 Commenti
Greg Heath
il 18 Giu 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
il 18 Giu 2014
Categorie
Scopri di più su Deep Learning Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!