From e6a9c1fcdf1869db8b5154857878ae68cffe4844 Mon Sep 17 00:00:00 2001 From: Wenfei Zhu Date: Wed, 20 Apr 2022 17:45:45 +0800 Subject: [PATCH] fix auto-annotation group_id issue (#3676) this fix only works for detector type auto-annotator with anno type not equal to 'tag'. --- cvat/apps/lambda_manager/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvat/apps/lambda_manager/views.py b/cvat/apps/lambda_manager/views.py index acd402a1..6b4bbe85 100644 --- a/cvat/apps/lambda_manager/views.py +++ b/cvat/apps/lambda_manager/views.py @@ -473,7 +473,7 @@ class LambdaJob: "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" })