How to train a network having x no of inputs and y no of outputs using hidden layers as well such that it can be later tested for unknown values as well ? Using matlab apps(neural net fitting ) ??
조회 수: 2 (최근 30일)
이전 댓글 표시
How to train a network having x no of inputs and y no of outputs using hidden layers as well such that it can be later tested for unknown values , Using matlab apps(neural net fitting ) ??
댓글 수: 0
답변 (1개)
Greg Heath
2016년 5월 8일
CHANGE IN NOTATION:
% "I"nput matrix x
[ I N ] = size(x)
% "O"utput "t"arget matrix
[ O N ] = size(t)
% Network "O"utput
y = net(x);
[ O N ] = size(y)
% Network "E"rror
e = t - y;
Documentation examples
help fitnet
doc fitnet
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!