who are alphabet, S2, S2 and targets? net is a feed-forward backpropagation network
Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
help me ?? How many layers are hidden ? Is it Backpropagation network ?
조회 수: 4 (최근 30일)
이전 댓글 표시
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);
댓글 수: 2
Ameer Hamza
2018년 4월 22일
This question is a duplicate of your previous question. It is not a good practice to start duplicate question because it wastes the time of volunteers trying to answer your question. You should try to follow the discussion on the original question. That is why we have comment sections on this website.
답변 (1개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!