normalization when calling fitnet

14 views (last 30 days)
Abdulaziz Almershed
Abdulaziz Almershed on 10 Apr 2021
Answered: Srivardhan Gadila on 14 Apr 2021
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?

Answers (1)

Srivardhan Gadila
Srivardhan Gadila on 14 Apr 2021
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.

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!