Releases: remydubois/lsnms
Releases · remydubois/lsnms
v0.4.4
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
This release extends python support to 3.11 and numpy
to ">=1.24".
v0.3.1
- 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
- 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
andtree
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
Little fixes over 0.1.0
See changelog