Ask Your Question
0

NEG count step gets progressively longer during training

asked 2016-09-30 03:53:01 -0600

roboteyes gravatar image

I experience a progressive slow-down in the NEG count step during haar training at each successive stage. Is this normal behavior? If so, what is causing the slow down to occur?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
1

answered 2016-09-30 06:56:42 -0600

That is actually fairly simple.

  • Each stage has to be able to classify the positives, and partially the negatives, to get a weak classifier.
  • When no stage has been created yet, finding those negatives is easy, simply sliding window through your larger negative images on different scales.
  • However, starting at stage0, when reaching stage1, the positives stay the same, but for the negatives, the misclassified samples of the previous stage are taken+filled with new negatives, that are tested versus stage0.
  • This principle continues, so basically at stage10, you are looking for negatives, that are still classified as positive but the previous 10 stages (again we start at 0) ...

So yes it increments in time with each stage.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2016-09-30 03:53:01 -0600

Seen: 106 times

Last updated: Sep 30 '16