normalization when calling fitnet

조회 수: 15 (최근 30일)
Abdulaziz Almershed
Abdulaziz Almershed 2021년 4월 10일
답변: Srivardhan Gadila 2021년 4월 14일
Does MATLAB normalizes the input by default when calling 'fitnet' or 'train' ??? if so how can I check it ? and how does it do it?

답변 (1개)

Srivardhan Gadila
Srivardhan Gadila 2021년 4월 14일
You can check it by accessing the processFcns subobject property of the network object.
% Construct a function fitting neural network with one hidden layer of size 10.
net = fitnet(10);
% View the network.
view(net)
% View processFcns
net.inputs.processFcns
Refer to Neural Network Subobject Properties for information related to other properties of network object & refer to Choose Neural Network Input-Output Processing Functions for more information on processing functions.

카테고리

Help CenterFile Exchange에서 Custom Training Loops에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by