From bc992e1ea46db2ce41528886aeca5a4f3aea1f7c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Feb 2026 21:38:11 +0000 Subject: [PATCH 1/2] Initial plan From e4ff409bb1dbc3fe497a7cbc7089a1df163f8dd0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 2 Feb 2026 23:17:49 +0000 Subject: [PATCH 2/2] Add verified field with True default to VOC data loading Co-authored-by: danellecline <1424813+danellecline@users.noreply.github.com> --- mbari_aidata/plugins/extractors/tap_voc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mbari_aidata/plugins/extractors/tap_voc.py b/mbari_aidata/plugins/extractors/tap_voc.py index 57548a3..fb1ac58 100644 --- a/mbari_aidata/plugins/extractors/tap_voc.py +++ b/mbari_aidata/plugins/extractors/tap_voc.py @@ -77,6 +77,7 @@ def parse_voc(xml_file): 'saliency': -1, 'cluster': -1, 'concept': obj_info['name'], + 'verified': True, 'x': x, 'y': y, 'xx': x + w, @@ -87,4 +88,4 @@ def parse_voc(xml_file): objs.append(obj) return pd.DataFrame(objs, columns=['image_path', 'label', 'score', 'saliency', 'concept', 'cluster', - 'x', 'y', 'xx', 'xy', 'image_width', 'image_height']) + 'verified', 'x', 'y', 'xx', 'xy', 'image_width', 'image_height'])