Skip to content

Commit

Permalink
fix auto-annotation group_id issue (cvat-ai#3676)
Browse files Browse the repository at this point in the history
this fix only works for detector type auto-annotator with anno type not equal to 'tag'.
  • Loading branch information
zwfcrazy authored Apr 20, 2022
1 parent ba4175b commit e6a9c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cvat/apps/lambda_manager/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def reset(self):
"occluded": False,
"points": anno["points"],
"z_order": 0,
"group": None,
"group": anno["group_id"] if "group_id" in anno else None,
"attributes": attrs,
"source": "auto"
})
Expand Down

0 comments on commit e6a9c1f

Please sign in to comment.