필터 지우기
필터 지우기

How to add regression layer to DAG network like resnet50 for image regression problem?

조회 수: 5 (최근 30일)
Hi all,
Can anyone suggest me how to add regression layer to DAG network like Resnet50 at the end, for Iamge regression problem. I could able to understand how to add regression layer to series network architecure like Alexnet. How to do with DAG network architecture like Resnet50?

채택된 답변

Deepika Ahlawat
Deepika Ahlawat 2020년 9월 16일
Hi,
To remove the classification layer and use regression layer instread you can use the add/remove/replace APIs.
The following code should resolve your issue.
net=resnet50;
net.SortedLayers;
lgraph = layerGraph(net);
newlgraph = removeLayers(lgraph,'ClassificationLayer_fc1000');
newlgraph = removeLayers(newlgraph,'fc1000_softmax');
lgraph = addLayers(newlgraph,regressionLayer('Name','out'));
lgraph = connectLayers(lgraph,'fc1000','out');
snet = assembleNetwork(lgraph);
  댓글 수: 1
Dhanaraj Nelapati
Dhanaraj Nelapati 2020년 9월 25일
Hi Deepika,
Thank you for your answer, I could able to solve the problem with your insights. Thank you once again.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by