how do i know the specifications of that neural network??

1 次查看(过去 30 天)
I have matlab code that employs neural network for fingerprint matching. i want to know the specifications of the neural network used please tell me how do i know that??
thank you.
  2 个评论
Nada Alotaibi
Nada Alotaibi 2022-4-6
Hi ,
Please i need the code by using CNN for fingerprint matching
you can send that at my email:
best-5-@hotmail.com

请先登录,再进行评论。

采纳的回答

Greg Heath
Greg Heath 2015-4-28
How many classification categories, c ?
What is the dimensionality, I, of the input feature column vectors?
How many input column vectors for each class? N1=?,N2=?,...,Nc=?
Total number of input vectors N = sum(i=1:c){Ni}
Target vectors are N c-dimensional (0,1) unit column vectors from eye(c)
MATLAB classification function documentation:
help patternnet
doc patternnet
MATLAB classification examples:
help nndatasets
doc nndatasets
Choose Iris flower classification example:
[ x, t] = iris_dataset;
[ I N ] = size( x)
[ c N ] = size( t )
truclassindices = vec2ind( t );
Test with the default No. of hidden nodes
H = 10
net = patternnet( H );
rng('default')
[ net tr y e ] = train( net, x, t );
% y = net( x );
% e = t - y ;
classindices = vec2ind( t );
err = classindices ~= truclassindices;
Nerr = sum(err)
PctErr = 100*Nerr/N
tr = tr % No semicolon to print the training record to screen
% Individual train/val/test errors for each class can be readily obtained by extracting the individual train/val/test indices from the training record tr.
Hope this helps.
Thank you for formally accepting my answer
Greg

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by