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 ) ??
1 回表示 (過去 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!