how "atestinput" could be recogrnised in matlb and how it is calculated in testing of image clasification؟
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am a little bit confused. "atestinput" is not defined its value like ineger or real. how it could be recogrnised in matlb. furthermore, can someone explain me how "atestinput" calculated in testing of image clasification.
%Testingforward propagation
for i=1:numtestimages
ytest=zeros(testoutputnodes,1);
ytest(testlabels(i)+1,1)=1;
for row=1:size(testimages,1)
for columns=1:size(testimages,2)
atestinput(columns+(row-1)*size(testimages,2),1)=testimages(row,columns,i);
end
end
1 comentario
Andreas Goser
el 14 de Sept. de 2023
In order to help you better: Can you share the code including example data so others can attempt to reproduce? And from your description, it is also not clear whether you are getting an error or if the results don't make sense.
Respuestas (1)
Image Analyst
el 14 de Sept. de 2023
MATLAB will automatically create/define variables using the class of the first thing assigned to them.
By the way, I would not use ,1 with vectors. It's possible you might be confusing it to make it think you're using a 2-dimensional array.
0 comentarios
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!