Ask Your Question
0

In FaceRecognizer, does arrangement of data in csv file affects training?

asked 2017-03-17 07:02:50 -0600

I am following a tutorial (unable to post link here, Pl. google it) to do gender classification task in real time. It is detecting and giving label to person in video after training from stored data-set. When I change the sequence of images in .csv file the detection also get affected, so does arrangement of data in .csv file for training affects the output of classifier? Experts please comment.

edit retag flag offensive close merge delete

Comments

if the order is affecting your prediction, then you're clearly doing something wrong.

can it be , you're changing the labelling, so ppl get another id this way ?

can you be more exact on what you're doing there ?

berak gravatar imageberak ( 2017-03-17 07:57:51 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
0

answered 2017-03-17 08:17:49 -0600

updated 2017-03-17 08:20:30 -0600

berak gravatar image

Thank you berak, I was using following format in order to also read name in string format from csv file:

/FaceRecg/face/male/s1/1.pgm;1;male
/FaceRecg/face/female/s1/1.pgm;0;female

instead of this:

/FaceRecg/face/male/s1/1.pgm;1
/FaceRecg/face/female/s1/1.pgm;0

It is working fine now after using later format.

edit flag offensive delete link more

Comments

ah, it does not read anything after the ;id , so your "male" or "female" labels were ignored

berak gravatar imageberak ( 2017-03-17 08:21:55 -0600 )edit

Question Tools

1 follower

Stats

Asked: 2017-03-17 07:02:50 -0600

Seen: 185 times

Last updated: Mar 17 '17