If possible in neural networks turn off automatic data normalization?
이전 댓글 표시
If possible in neural networks turn off automatic data normalization?
답변 (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월 9일
편집: John Kelly
2017년 2월 3일
I deleted your question that was inappropriately put into an Answer Box.
The answer is
net = fitnet;
net.inputs{1}.processFcns{2} = {'removeconstantrows'};
net.outputs{2}.processFcns{2} = {'removeconstantrows'};
Radek
2015년 6월 10일
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.
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!