3D-MOOD / vis4d /eval /common /__init__.py
RoyYang0714's picture
feat: Try to build everything locally.
9b33fca
raw
history blame contribute delete
350 Bytes
"""Common evaluation code."""
from .binary import BinaryEvaluator
from .cls import ClassificationEvaluator
from .depth import DepthEvaluator
from .flow import OpticalFlowEvaluator
from .seg import SegEvaluator
__all__ = [
"ClassificationEvaluator",
"DepthEvaluator",
"OpticalFlowEvaluator",
"BinaryEvaluator",
"SegEvaluator",
]