5-6,评估指标metrics

损失函数除了作为模型训练时候的优化目标,也能够作为模型好坏的一种评价指标。但通常人们还会从其它角度评估模型的好坏。

这就是评估指标。通常损失函数都可以作为评估指标,如MAE,MSE,CategoricalCrossentropy等也是常用的评估指标。

但评估指标不一定可以作为损失函数,例如AUC,Accuracy,Precision。因为评估指标不要求连续可导,而损失函数通常要求连续可导。

编译模型时,可以通过列表形式指定多个评估指标。

如果有需要,也可以自定义评估指标。

自定义评估指标需要接收两个张量y_true,y_pred作为输入参数,并输出一个标量作为评估值。

也可以对tf.keras.metrics.Metric进行子类化,重写初始化方法, update_state方法, result方法实现评估指标的计算逻辑,从而得到评估指标的类的实现形式。

由于训练的过程通常是分批次训练的,而评估指标要跑完一个epoch才能够得到整体的指标结果。因此,类形式的评估指标更为常见。即需要编写初始化方法以创建与计算指标结果相关的一些中间变量,编写update_state方法在每个batch后更新相关中间变量的状态,编写result方法输出最终指标结果。

如果编写函数形式的评估指标,则只能取epoch中各个batch计算的评估指标结果的平均值作为整个epoch上的评估指标结果,这个结果通常会偏离整个epoch数据一次计算的结果。

一,常用的内置评估指标

  • MeanSquaredError(均方误差,用于回归,可以简写为MSE,函数形式为mse)

  • MeanAbsoluteError (平均绝对值误差,用于回归,可以简写为MAE,函数形式为mae)

  • MeanAbsolutePercentageError (平均百分比误差,用于回归,可以简写为MAPE,函数形式为mape)

  • RootMeanSquaredError (均方根误差,用于回归)

  • Accuracy (准确率,用于分类,可以用字符串”Accuracy”表示,Accuracy=(TP+TN)/(TP+TN+FP+FN),要求y_true和y_pred都为类别序号编码)

  • Precision (精确率,用于二分类,Precision = TP/(TP+FP))

  • Recall (召回率,用于二分类,Recall = TP/(TP+FN))

  • TruePositives (真正例,用于二分类)

  • TrueNegatives (真负例,用于二分类)

  • FalsePositives (假正例,用于二分类)

  • FalseNegatives (假负例,用于二分类)

  • AUC(ROC曲线(TPR vs FPR)下的面积,用于二分类,直观解释为随机抽取一个正样本和一个负样本,正样本的预测值大于负样本的概率)

  • CategoricalAccuracy(分类准确率,与Accuracy含义相同,要求y_true(label)为onehot编码形式)

  • SparseCategoricalAccuracy (稀疏分类准确率,与Accuracy含义相同,要求y_true(label)为序号编码形式)

  • MeanIoU (Intersection-Over-Union,常用于图像分割)

  • TopKCategoricalAccuracy (多分类TopK准确率,要求y_true(label)为onehot编码形式)

  • SparseTopKCategoricalAccuracy (稀疏多分类TopK准确率,要求y_true(label)为序号编码形式)

  • Mean (平均值)

  • Sum (求和)

二, 自定义评估指标

我们以金融风控领域常用的KS指标为例,示范自定义评估指标。

KS指标适合二分类问题,其计算方式为 KS=max(TPR-FPR).

其中TPR=TP/(TP+FN) , FPR = FP/(FP+TN)

TPR曲线实际上就是正样本的累积分布曲线(CDF),FPR曲线实际上就是负样本的累积分布曲线(CDF)。

KS指标就是正样本和负样本累积分布曲线差值的最大值。

5-6,评估指标metrics - 图1

  1. import numpy as np
  2. import pandas as pd
  3. import tensorflow as tf
  4. from tensorflow.keras import layers,models,losses,metrics
  5. #函数形式的自定义评估指标
  6. @tf.function
  7. def ks(y_true,y_pred):
  8. y_true = tf.reshape(y_true,(-1,))
  9. y_pred = tf.reshape(y_pred,(-1,))
  10. length = tf.shape(y_true)[0]
  11. t = tf.math.top_k(y_pred,k = length,sorted = False)
  12. y_pred_sorted = tf.gather(y_pred,t.indices)
  13. y_true_sorted = tf.gather(y_true,t.indices)
  14. cum_positive_ratio = tf.truediv(
  15. tf.cumsum(y_true_sorted),tf.reduce_sum(y_true_sorted))
  16. cum_negative_ratio = tf.truediv(
  17. tf.cumsum(1 - y_true_sorted),tf.reduce_sum(1 - y_true_sorted))
  18. ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio))
  19. return ks_value
  1. y_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])
  2. y_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],[0.7],
  3. [0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])
  4. tf.print(ks(y_true,y_pred))
  1. 0.625
  1. #类形式的自定义评估指标
  2. class KS(metrics.Metric):
  3. def __init__(self, name = "ks", **kwargs):
  4. super(KS,self).__init__(name=name,**kwargs)
  5. self.true_positives = self.add_weight(
  6. name = "tp",shape = (101,), initializer = "zeros")
  7. self.false_positives = self.add_weight(
  8. name = "fp",shape = (101,), initializer = "zeros")
  9. @tf.function
  10. def update_state(self,y_true,y_pred):
  11. y_true = tf.cast(tf.reshape(y_true,(-1,)),tf.bool)
  12. y_pred = tf.cast(100*tf.reshape(y_pred,(-1,)),tf.int32)
  13. for i in tf.range(0,tf.shape(y_true)[0]):
  14. if y_true[i]:
  15. self.true_positives[y_pred[i]].assign(
  16. self.true_positives[y_pred[i]]+1.0)
  17. else:
  18. self.false_positives[y_pred[i]].assign(
  19. self.false_positives[y_pred[i]]+1.0)
  20. return (self.true_positives,self.false_positives)
  21. @tf.function
  22. def result(self):
  23. cum_positive_ratio = tf.truediv(
  24. tf.cumsum(self.true_positives),tf.reduce_sum(self.true_positives))
  25. cum_negative_ratio = tf.truediv(
  26. tf.cumsum(self.false_positives),tf.reduce_sum(self.false_positives))
  27. ks_value = tf.reduce_max(tf.abs(cum_positive_ratio - cum_negative_ratio))
  28. return ks_value
  1. y_true = tf.constant([[1],[1],[1],[0],[1],[1],[1],[0],[0],[0],[1],[0],[1],[0]])
  2. y_pred = tf.constant([[0.6],[0.1],[0.4],[0.5],[0.7],[0.7],
  3. [0.7],[0.4],[0.4],[0.5],[0.8],[0.3],[0.5],[0.3]])
  4. myks = KS()
  5. myks.update_state(y_true,y_pred)
  6. tf.print(myks.result())
  1. 0.625

如果对本书内容理解上有需要进一步和作者交流的地方,欢迎在公众号”Python与算法之美”下留言。作者时间和精力有限,会酌情予以回复。

也可以在公众号后台回复关键字:加群,加入读者交流群和大家讨论。

image.png