torch_em.metric
Metrics for instance segmentation tasks that can be used for validation during neural network training.
1"""Metrics for instance segmentation tasks that can be used for validation during neural network training. 2""" 3from .instance_segmentation_metric import (EmbeddingMWSIOUMetric, EmbeddingMWSRandMetric, EmbeddingMWSSBDMetric, EmbeddingMWSVOIMetric, 4 HDBScanIOUMetric, HDBScanRandMetric, HDBScanSBDMetric, HDBScanVOIMetric, 5 MulticutRandMetric, MulticutVOIMetric, 6 MWSIOUMetric, MWSSBDMetric, MWSRandMetric, MWSVOIMetric)