Source code for rastervision.core.evaluation.object_detection_evaluator

from rastervision.core.evaluation import (ClassificationEvaluator,
                                          ObjectDetectionEvaluation)


[docs]class ObjectDetectionEvaluator(ClassificationEvaluator): """Evaluates predictions for a set of scenes."""
[docs] def create_evaluation(self): return ObjectDetectionEvaluation(self.class_config)