how to decrease the neural network error
이전 댓글 표시
I have six input as natural frequencies while the output are the depth and location of damage in x and y direction . this means that the net has three outputs. when i trained the net the error is very high. how can I decrease the error. worth noting that I have 90 cases in total as input of the net.
x=Input; t=Target;
% Create a Fitting Network
net = feedforwardnet(10);
% Train the Network
net = train(net,x,t);
view(net)
output = net(x);
perf = perform(net,t,output)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!