mmsegmentation/mmseg/metrics/__init__.py

6 lines
160 B
Python
Raw Normal View History

2022-06-02 22:15:28 +08:00
# Copyright (c) OpenMMLab. All rights reserved.
2022-06-28 11:21:33 +08:00
from .citys_metric import CitysMetric
2022-06-02 22:15:28 +08:00
from .iou_metric import IoUMetric
2022-06-28 11:21:33 +08:00
__all__ = ['IoUMetric', 'CitysMetric']