Finding two layers to replace in googlenet
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tahmina Sumi
am 30 Jan. 2020
Kommentiert: cheng xiao
am 2 Sep. 2020
Dear Altruists,
I was trying this example: https://www.mathworks.com/help/deeplearning/examples/train-deep-learning-network-to-classify-new-images.html for deep learning using googlenet.But its showing me error which is "Undefined function or variable 'findLayersToReplace' " in this two lines
[learnableLayer,classLayer] = findLayersToReplace(lgraph);
[learnableLayer,classLayer]
I have tried this lines in the command prompt
edit(fullfile(matlabroot,'examples','nnet','main','freezeWeights.m'))
edit(fullfile(matlabroot,'examples','nnet','main','createLgraphUsingConnections.m'))
edit(fullfile(matlabroot,'examples','nnet','main','findLayersToReplace.m'))
But i'm not getting any fruitfull result...
Please help me creating the function of findLayersToReplace.
Thanks in advance.
2 Kommentare
Mohammad Sami
am 30 Jan. 2020
Bearbeitet: Mohammad Sami
am 30 Jan. 2020
Do you have deep learning and neural network toolbox ?
What is your matlabs version ?
Akzeptierte Antwort
Mohammad Sami
am 31 Jan. 2020
For R2018a, you can follow this tutorial. Essentially it shows you what the findLayersToReplace function was doing.
For most transfer learning applications, we remove the final fully connected layer, softmax layer and classification layer.
These are then replaced with your own fc, softmax and classification layers.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!.png)
