Skip to content

Releases: remydubois/lsnms

v0.4.4

17 Mar 19:36
577fada
Compare
Choose a tag to compare

What's Changed

  • Fix/Issue 29 by @remydubois in #30
  • (CI) Benchmarks update by @github-actions in #31

Full Changelog: v0.4.3...v0.4.4

v0.4.3

07 Jan 19:48
ffcc6f7
Compare
Choose a tag to compare

This release extends python support to 3.11 and numpy to ">=1.24".

v0.3.1

05 Jan 17:27
Compare
Choose a tag to compare
  • Added multiclass support for NMS
  • Edge case where all box scores are zero (or all below threshold) is now handled (threw uggly error before)
  • Use the underlying RNode class in nms now, which speeds up compilation (no need to compile RTree anymore)

v0.2.0

17 Nov 12:06
Compare
Choose a tag to compare
  • Discarded BallTree and KDTree which are now replaced by a RTree: as fast and hyperparameter-free
    -> lsnms.nms is now twice faster to compile (only one tree to compile)
  • cutoff_distance and tree are now deprecated. Warnings are issued when those are specified.
  • cleared the tests structure
  • added types conversion and sanity checks for data shape, etc
  • cached all the jitted function which could (the non recursive ones) -> saves 2 seconds of compilation time at first use.
    -> lsnms.nms is now hyperparameter free, runs just as fast as before, and almost three times faster to compile at first use.

v0.1.1: Merge pull request #1 from remydubois/feature/argpartition

31 Mar 18:36
aa9dc73
Compare
Choose a tag to compare