normalization when calling fitnet
4 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
Srivardhan Gadila
2021 年 4 月 14 日
% 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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!