Using PNN neural network method or by using RBF radial basis function, what would be the spread value? Which one will provide best result PNN or RBF
Show older comments
Sir I have pattern of 1440X3 ,target file as 1400X1 and test file of 18X1 size how to get test file by using PNN neural network method or by using RBF radial basis function what would be the spread value.which one will provide best result PNN or RBF
clc
%read dat in file
P=load('pattern.txt')
TC=load('target.txt')
P=P'.*1000;
TC=TC';
P12=load('test.txt');
% P1=P12(1,:)';
P1=P12'.*1000;
T=ind2vec(TC);
net=newrbe(P,T,10);
Y=sim(net,P1);
Yc=vec2ind(Y)'
S= sum (Yc)
% length(Yc)
L = length(Yc)
x = ldivide(L,S)
Accepted Answer
More Answers (0)
Categories
Find more on Define Shallow Neural Network Architectures 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!