why can imageInputLayer of 'deep network designer' app not be edited?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jack Xiao
el 12 de En. de 2021
Comentada: Jack Xiao
el 21 de Feb. de 2021
I want to edit the mean and std in imageInputLayer, but it is settled and can not be eidted, as follow:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/485568/image.png)
so, how to edit it directly by using 'deep network designer'?
0 comentarios
Respuesta aceptada
Raynier Suresh
el 20 de En. de 2021
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!