We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b34aa2c commit ad5e6efCopy full SHA for ad5e6ef
‎ote_sdk/ote_sdk/utils/dataset_utils.py
@@ -152,8 +152,9 @@ def split_local_global_resultset(
152
:param resultset: Input result set
153
:return: Globally annotated result set, locally annotated result set
154
"""
155
- global_gt_dataset, local_gt_dataset = split_local_global_dataset(
156
- resultset.ground_truth_dataset
+ global_gt_dataset = get_global_subset(resultset.ground_truth_dataset)
+ local_gt_dataset = get_local_subset(
157
+ resultset.ground_truth_dataset, include_normal=False
158
)
159
local_idx = get_fully_annotated_idx(resultset.ground_truth_dataset)
160
global_pred_dataset = get_global_subset(resultset.prediction_dataset)
0 commit comments