If possible in neural networks turn off automatic data normalization?
3 ビュー (過去 30 日間)
古いコメントを表示
If possible in neural networks turn off automatic data normalization?
0 件のコメント
回答 (1 件)
Greg Heath
2015 年 6 月 9 日
Or course. You can change any default that you want.
[ x,t] = simplefit_dataset;
Now, what do you see when you enter each of these commands, ONE AT A TIME, without an ending semicolon? Look CAREFULLY at EACH result.
net = fitnet
input = net.inputs{1}
processFcns = net.inputs{1}.processFcns
processFcns2 = net.inputs{1}.processFcns{2}
output = net.outputs{2}
etc
Hope this helps.
Thank you for formally accepting my answer
Greg
3 件のコメント
Greg Heath
2015 年 6 月 10 日
Good!
I think I was trying to eliminate the 2nd component directly. However I couldn't find a way to do it.
I don't know how I came up with the answer I posted.
参考
カテゴリ
Help Center および File Exchange で Sequence and Numeric Feature Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!