Signature recogniation rbf(radial basis function) neural network at matlab

Status
Not open for further replies.

sarine

Newbie level 4
Joined
Jan 24, 2010
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
turkey
Activity points
1,311
I have got two questions
hi i have been working about signature recocniation system in matlab.I decide to classify with rbfnn(radial basis function neural network) .I can do %60 in accuracy.The system must to work higher accuracy.Number of educational data is 728.(28*26).There are 28 persons signature.Each person has got 26 signatures.Number of test signature is 280.(28*10).There are 28 persons in signature recogniation system.Each person has got 10 signatures.

1-Which spread value i can chose?
Code:
eg = 0.001; % sum-squared error goal
sc = 11;    % spread constant


Here we design a radial basis network given inputs X and targets T.
Code:
     X = [1 2 3];
     T = [2.0 4.1 5.9];
     net = newrb(X,T);
     Y = net(X)

my code is
Code:
eg = 0.001; % sum-squared error goal
sc = 11;    % spread constant
net = newrb(input,target,eg,sc);

There is'nt any parameters set nember of epochs
How can i set number of epochs?

Please help me...
 
Last edited by a moderator:

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…