Skip to content

Releases: obss/sahi

v0.3.7

28 Apr 00:14
40db579
Compare
Choose a tag to compare
  • faster coco dataset indexing (#53)
  • category remapping feature for coco datasets (#53)
  • fix export_as_yolov5 paths (#52)

v0.3.6

27 Apr 15:02
ae8d24c
Compare
Choose a tag to compare
  • make some dependencies optional
  • fix some coco utils

v0.3.5

27 Apr 02:44
9c05ba8
Compare
Choose a tag to compare

v0.3.4

24 Apr 15:29
353ece3
Compare
Choose a tag to compare
  • add new coco utils (#42). check here for example usages.

v0.3.3

11 Apr 19:23
3ad54d6
Compare
Choose a tag to compare
python scripts/coco_error_analysis.py results.json output/folder/directory --ann coco/annotation/path

will calculate coco error plots and export them to given output folder directory.

If you want to specify mAP result type, set it as --types bbox mask.

If you want to export extra mAP bar plots and annotation area stats add --extraplots argument.

If you want to specify area regions, set it as --areas 1024 9216 10000000000.

v0.3.1

26 Feb 21:06
8ba6da2
Compare
Choose a tag to compare
  • fix a sliced prediction bug happening on small images

v0.3.0

23 Feb 11:10
79c1f00
Compare
Choose a tag to compare

Major Updates

  • refactorize main predict function:
python scripts/predict.py --visual --source image/file/or/folder --model_path path/to/model --config_path path/to/config

will export predictions visuals to runs/predict/exp folder.
If you want to export prediction pickles and cropped predictions add --pickle and --crop arguments.

  • add option to export coco json:
python scripts/predict.py --coco_file path/to/coco/file --source coco/images/directory --model_path path/to/model --config_path path/to/config

will perform inference using provided coco file, then export results as a coco json file to runs/predict/exp/results.json

  • add script for coco2yolov5 conversion:
python scripts/coco2yolov5.py --coco_file path/to/coco/file --source coco/images/directory --train_split 0.9

will convert given coco dataset to yolov5 format and export to runs/coco2yolov5/exp folder .

Minor Updates

  • add export_format to crop_object_predictions
  • fix coco annotation serialization
  • more generic coco handling
  • add option to export visuals
  • update ci/package testing workflows

v0.2.5

15 Feb 16:04
970058b
Compare
Choose a tag to compare
  • fix cli argument

  • fix function argument

  • add export format selection

v0.2.4

13 Feb 17:21
3094937
Compare
Choose a tag to compare
  • add coco to yolo conversion utility

v0.2.3

11 Feb 09:07
1ff53f1
Compare
Choose a tag to compare
  • added merger for single predictions