What deeplearning networks does pretrained models belongs to?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi i am working in Deeplearning (Classification) for my project and i am using some pretrained network like vgg16 , vgg19 ,Alexnet for my project and i want to know on what deepLearning framework basis that these pretrained networks are working .
Thanks in advance
0 件のコメント
回答 (2 件)
Image Analyst
2022 年 2 月 23 日
Not sure about vgg (I haven't used them), but alexnet is a "convolutional neural network" used for classification (basically finding if the image has one of a predefined set of objects anywhere in the image - like "is there a dog, cat, or lizard anywhere in this image?").
2 件のコメント
Image Analyst
2022 年 2 月 23 日
編集済み: Image Analyst
2022 年 2 月 23 日
I think you're in the wrong forum. A survey by Gartner showed MATLAB tools to be better than those but if you still want those tools, look in a forum that deals with those tools.
yanqi liu
2022 年 2 月 23 日
yes,sir,may be load the pretrained model,and check its Layers,use image reshape to match inputLayer size,then get the classify result through model Layers parameter compute. if want to watch middle layers work,may be use activations or deepDreamImage to view them, such as
net = alexnet;
net.Layers
layer = 'conv1';
channels = 1:25;
I = deepDreamImage(net,layer,channels, ...
'PyramidLevels',1, ...
'Verbose',0);
figure
for i = 1:25
subplot(5,5,i)
imshow(I(:,:,:,i))
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!