필터 지우기
필터 지우기

What's the name of the fully connected layers in googlenet?

조회 수: 2 (최근 30일)
Tripoli Settou
Tripoli Settou 2018년 2월 22일
댓글: Brahim HAMADICHAREF 2024년 2월 15일
The name of the first and second fully connected layer are 'fc6' & 'fc7' respectively in (Alexnet, VGG16,VGG19). the question is what's the fully connected layer names in googlenet?

답변 (1개)

Joss Knight
Joss Knight 2018년 3월 9일
net = googlenet;
lg = getLayerGraph(net);
for i = 1:numel(lg.Layers)
name = sprintf('%s_%d', class(lg.Layers{i}), i);
name(1:24) = [];
lg.Layers{i}.Name = name;
end
plot(lg);

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by