フィルターのクリア

How DeepLab v3+ is connected with ResNet-18 in matlab?

9 ビュー (過去 30 日間)
kumara dommeti
kumara dommeti 2020 年 10 月 24 日
編集済み: kumara dommeti 2020 年 10 月 28 日
In matlab how DeepLab v3+ is combined with ResNet-18? I mean how both architectures are combined to form deeplabv3plusLayers function? How ResNet-18 features are connected with DeepLab v3+ layers?
In this "https://www.mathworks.com/help/vision/ref/deeplabv3pluslayers.html" they explained how to create a DeepLab v3+ network based on ResNet-18. But how are they both combined to get features? (Which layers have to be connected from ResNet-18 to DeepLab v3+ to get this "deeplabv3plusLayers(imageSize,numClasses,'resnet18');" network)

回答 (1 件)

Srivardhan Gadila
Srivardhan Gadila 2020 年 10 月 28 日
You can make use of analyzeNetwork function to see and analyze how resnet18 or other networks are being used in the deeplabv3plusLayers function.
resnet18Net = resnet18;
analyzeNetwork(resnet18Net)
imageSize = [224 224 3];
numClasses = 5;
network = 'resnet18';
deeplabv3Down16 = deeplabv3plusLayers(imageSize,numClasses,network,'DownsamplingFactor',16);
deeplabv3Down8 = deeplabv3plusLayers(imageSize,numClasses,network,'DownsamplingFactor',8);
analyzeNetwork(deeplabv3Down16)
analyzeNetwork(deeplabv3Down8)
  1 件のコメント
kumara dommeti
kumara dommeti 2020 年 10 月 28 日
編集済み: kumara dommeti 2020 年 10 月 28 日
Sir, I know how to analyze by using analyzeNetwork. But my question is how they are working to learn features when combined together? (I know how both networks are working when they are implemented seperately. But my question is when they are combined how they will learn features).

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeRecognition, Object Detection, and Semantic Segmentation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by