MATLAB: How to create training data set for signature verification

neural networkssignature verificationtraining data set

I have 5 genuine and 5 forged signatures of each of 12 people( total 60 genuine and 60 forged). I've extracted their features like moments and aspect ratios (7 features of each signature). So, how do I create a training data set? Create a column for each signature? Do I need to create 12 training sets for 12 people? How do I arrange those features I've extracted to train the network ? (P.S : I've done some image processing projects but I'm a bit new in neural networks.)
Please help. Thanks.

Best Answer

[ 7 120 ] = size(input)
[ 12 120 ] = size(target)
target columns are columns of eye(12)
Hope this helps
Thank you forformally accepting my answer
Greg