Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Please help me to understand the code.

조회 수: 1 (최근 30일)
Shaila parvin
Shaila parvin 2013년 6월 29일
This is a code for training Neural Network:
function [net]=createff(Iin,Target)
net = newff(Iin, Target, 10, {'logsig' 'logsig'}, 'trainscg');
net.trainParam.perf = 'sse';
net.trainParam.epochs = 500;
net.trainParam.goal = 1e-5;
net.trainParam.lr=0.15;
net.trainParam.mc=0.8;
net = init(net);
net = train(net, Iin, Target);
end
Please help me to understand this code.

답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by