quantombone / exemplarsvm

Ensemble of Exemplar-SVMs for Object Detection and Beyond
http://www.cs.cmu.edu/~tmalisie/projects/iccv11/index.html
MIT License
430 stars 155 forks source link

BUGFIX. Unused variable removed, that caused quadratic running time o… #68

Open asanakoy opened 8 years ago

asanakoy commented 8 years ago
  1. Fixed BUG, that caused looping over all dataset every time we applied SVM to an image during mining of negatives. Running time improved from quadratic to linear.
  2. Optimized method for ipdating mining queue _update_mqonepass. No need to loop through all the queue two times to find elements to delete, because in 'onepass' mode we loop images iteratively one-by-one.
asanakoy commented 8 years ago

@quantombone, Hi. Could you merge it please?