how "atestinput" could be recogrnised in matlb and how it is calculated in testing of image clasification؟
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
Andreas Goser
2023 年 9 月 14 日
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.
回答 (1 件)
Image Analyst
2023 年 9 月 14 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!