File size: 350 Bytes
9b33fca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""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",
]