Skip to content

Commit

Permalink
fix a bug in coco2fiftyone (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcakyon committed Sep 10, 2021
1 parent 731ef6f commit 2242c1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sahi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.2"
__version__ = "0.8.3"
2 changes: 1 addition & 1 deletion sahi/scripts/coco2fiftyone.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main(
image_id_to_coco_result_list.append(image_id_to_coco_result)

# use file names as fiftyone name, create unique names if duplicate
result_name_temp = Path(result_json_path).name
result_name_temp = Path(result_json_path).stem
result_name = result_name_temp
name_increment = 2
while result_name in result_name_list:
Expand Down

0 comments on commit 2242c1c

Please sign in to comment.