0. 참고 문서
https://kr.mathworks.com/help/deeplearning/gs/get-started-with-transfer-learning.html
1. 데이터 추출하기
unzip('MerchData.zip') |
2. 사전훈련된 신경망 불러오기
deepNetworkDesigner |
3. 훈련된 신경망 테스트하기
I = imread("MerchDataTest.jpg"); I = imresize(I, [227 227]); [YPred, probs] = classify(trainedNetwork_1, I); imshow(I) label = YPred; title(string(label) + ", " + num2str(100*max(probs),3) + "%"); |