Releases: obss/sahi
Releases · obss/sahi
v0.8.13
v0.8.12
v0.8.11
v0.8.10
What's Changed
- improve mmdet config download util by @fcakyon in #278
- update version to v0.8.10 by @fcakyon in #279
- add zenodo doi and citation into readme by @fcakyon in #280
- fix broken link in readme by @fcakyon in #277
- fix mmcv installation in readme by @fcakyon in #281
Full Changelog: 0.8.9...0.8.10
v0.8.9
What's Changed
-
add
get_coco_with_clipped_bboxes
utility to coco class by @ssahinnkadir in #264 -
update torch, torchvision, mmdet, mmcv versions in tests by @fcakyon in #267
Full Changelog: 0.8.8...0.8.9
v0.8.8
v0.8.6
v0.8.5
bugfixes, enhancements
v0.8.4
- handle predictions with negative bbox values (#225)
- fix remove_invalid_coco_results (#227)
- fix coco evaluation (#228)
Remove invalid coco results:
from sahi.utils.file import save_json
from sahi.utils.coco import remove_invalid_coco_results
# remove invalid predictions from COCO results JSON
coco_results = remove_invalid_coco_results("coco_result.json")
# export processed COCO results
save_json(coco_results, "fixed_coco_result.json")
# bonus: remove invalid predictions from COCO results JSON by giving COCO
# dataset path to also filter out bbox results exceeding image height&width
coco_results = remove_invalid_coco_results("coco_result.json", "coco_dataset.json")