fast-reid/fastreid/evaluation/__init__.py

7 lines
286 B
Python
Raw Normal View History

2020-02-10 07:38:56 +08:00
from .evaluator import DatasetEvaluator, inference_context, inference_on_dataset
from .reid_evaluation import ReidEvaluator
from .clas_evaluator import ClasEvaluator
2020-02-10 07:38:56 +08:00
from .testing import print_csv_format, verify_results
__all__ = [k for k in globals().keys() if not k.startswith("_")]