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

조회 수: 1 (최근 30일)
Dhananjay Reddy V
Dhananjay Reddy V 2015년 4월 26일
댓글: Nada Alotaibi 2022년 4월 6일
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
Greg Heath
Greg Heath 2015년 4월 27일
post the pertinent part of the code
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