필터 지우기
필터 지우기

How create NN ???

조회 수: 3 (최근 30일)
Silva Doo
Silva Doo 2018년 4월 16일
편집: Greg Heath 2019년 2월 4일
How many layers are hidden ? Is it Backpropagation network ?
net = newff(minmax(alphabet),[S1 10 S2],{'logsig' 'logsig' 'logsig' },'traingdx');
net.LW{2,1} = net.LW{2,1}*0.01;
net.b{2} = net.b{2}*0.01;
net.performFcn = 'mse';
net.trainParam.show = 20;
net.trainParam.epochs = 2000;
net.trainParam.mc = 0.95;
P = alphabet;
T = targets;
[net,tr] = train(net,P,T);

채택된 답변

BERGHOUT Tarek
BERGHOUT Tarek 2019년 2월 4일
편집: Greg Heath 2019년 2월 4일
there are 2 hidden layers .
but you should know that there is a difference between the training method and the type of the network ;
back propagation is a training tool to NN , you can't say that it is a backpropagation network , because many different types of nets can be trained with back propagation

추가 답변 (0개)

카테고리

Help CenterFile 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!

Translated by