summaryrefslogtreecommitdiff
path: root/evaluation/template.py
blob: bcaf17235fcc82373e92b7c10206018e60e8d2cf (plain)
1
2
3
4
5
6
7
8
9
10


def evaluate(y_true: [int], y_pred: [int]) -> float:
    """
    评估方法
    :param y_true: 真实标签
    :param y_pred: 检测标签
    :return: 分数,float类型
    """
    return 0.0