how i will get the predicted output from this neural network program?
Show older comments
also any corrections pls tell me,
% Target Vector T = [1 4 9 16 25 36 49 64 81 100]; % T=T';
% Input Vector p =[1 2 3 4 5 6 7 8 9 10]; % p = p';
% Number of hidden neurons S1 = 20;
% Create Network net = newelm(p,T,S1);
% Train Network pseq = con2seq(p); Tseq = con2seq(T); net = train(net,pseq,Tseq);
% Test the network Y = sim(net,pseq); z = seq2con(Y); diff1 = T - z{1,1};
Accepted Answer
More Answers (1)
Greg Heath
on 10 Sep 2012
0 votes
The short answer is
MSE00 = var(T,1,2) % 1051.1 MSE of the naive Y = mean(T) model
Z = cell2mat(Y) % seq2con(Y) is a cell
MSE = mse(T-Z) % 10.02 Mean-Square-Error
NMSE = MSE/MSE00 % 0.00953 Normalized Mean-Square-Error
Rsquare = 1 - NMSE % 0.99047 Coefficient of Determination (See Wikipedia)
Thank you for formally accepting my short answer
Greg
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!