why can imageInputLayer of 'deep network designer' app not be edited?

조회 수: 1 (최근 30일)
Jack Xiao
Jack Xiao 2021년 1월 12일
댓글: Jack Xiao 2021년 2월 21일
I want to edit the mean and std in imageInputLayer, but it is settled and can not be eidted, as follow:
so, how to edit it directly by using 'deep network designer'?

채택된 답변

Raynier Suresh
Raynier Suresh 2021년 1월 20일
As of now the Mean and StandardDeviation cannot be modified directly in the Deep Network Designer. A work around for this is to define that layer in the MATLAB Terminal and then import it into the Deep Network Designer.
To define the layer with Mean and StandardDeviation you can use the below code.
inputlayer = imageInputLayer([28 28 3],'Name','input','Normalization','zscore','Mean',ones(1,1,3),'StandardDeviation',ones(1,1,3))
Refer the below link for more information on defining the image input layer:https://www.mathworks.com/help/deeplearning/ref/nnet.cnn.layer.imageinputlayer.html

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by