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