We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2274cea commit a97d388Copy full SHA for a97d388
otx/api/usecases/evaluation/f_measure.py
@@ -678,9 +678,6 @@ def __init__(
678
if len(prediction_dataset) == 0 or len(ground_truth_dataset) == 0:
679
raise ValueError("Cannot compute the F-measure of an empty result set.")
680
681
- ground_truth_dataset.sort_items()
682
- prediction_dataset.sort_items()
683
-
684
labels = resultset.model.configuration.get_label_schema().get_labels(include_empty=False)
685
classes = [label.name for label in labels]
686
boxes_pair = _FMeasureCalculator(
0 commit comments