diff --git a/dacapo/experiments/tasks/cellpose_task.py b/dacapo/experiments/tasks/cellpose_task.py deleted file mode 100644 index 043d86426..000000000 --- a/dacapo/experiments/tasks/cellpose_task.py +++ /dev/null @@ -1,24 +0,0 @@ -from .evaluators import BinarySegmentationEvaluator -from .losses import CellposeLoss -from .post_processors import ThresholdPostProcessor -from .predictors import CellposePredictor -from .task import Task - - -class CellposeTask(Task): - def __init__(self, task_config): - - self.predictor = CellposePredictor( - channels=task_config.channels, - scale_factor=task_config.scale_factor, - mask_distances=task_config.mask_distances, - clipmin=task_config.clipmin, - clipmax=task_config.clipmax, - ) - self.loss = CellposeLoss() - self.post_processor = ThresholdPostProcessor() - self.evaluator = BinarySegmentationEvaluator( - clip_distance=task_config.clip_distance, - tol_distance=task_config.tol_distance, - channels=task_config.channels, - )