Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How can I store the output of a deep learning layer to a variable ?
조회 수: 1 (최근 30일)
이전 댓글 표시
Inorder to implement an academic project, I need to use the output of specific layers in a deepnet. The main part of my code goes like this:
dbPath = <path to my image database>;
imds = imageDatastore(dbPath,'IncludeSubfolders', true,'LabelSource','foldernames');
[trainImgs,testImgs] = splitEachLabel(imds,0.6,'randomized');
I = imread(<my image>)
cnnNet = vgg16;
label = classify(cnnNet, I)
Now , I need to work on the outputs of the layer 'fc8' (the final Fully Connected Layer). But i couldn't find how to store the output of a specific layer to a variable. Please help
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!