Tensorflow Precision, Recall, F1 - 多标签分类

Posted

技术标签:

【中文标题】Tensorflow Precision, Recall, F1 - 多标签分类【英文标题】:Tensorflow Precision, Recall, F1 - multi label classification 【发布时间】:2017-12-30 10:16:10 【问题描述】:

我正在尝试使用 tensorflow 实现多标签句子分类模型。大约有 1500 个标签。 该模型工作得很好,但是我不确定它生成的指标。

这是生成指标的代码:

    with tf.name_scope('loss'):
        losses = tf.nn.softmax_cross_entropy_with_logits(labels=self.input_y, logits=self.scores) #  only named arguments accepted
        self.loss = tf.reduce_mean(losses) + l2_reg_lambda * l2_loss

    with tf.name_scope('accuracy'):
        correct_predictions = tf.equal(self.predictions, tf.argmax(self.input_y, 1))
        self.accuracy = tf.reduce_mean(tf.cast(correct_predictions, "float"), name='accuracy')

    with tf.name_scope('num_correct'):
        correct = tf.equal(self.predictions, tf.argmax(self.input_y, 1))
        self.num_correct = tf.reduce_sum(tf.cast(correct, 'float'))

    with tf.name_scope('fp'):
        fp = tf.metrics.false_positives(labels=tf.argmax(self.input_y, 1), predictions=self.predictions)
        self.fp = tf.reduce_sum(tf.cast(fp, 'float'), name='fp')

    with tf.name_scope('fn'):
        fn = tf.metrics.false_negatives(labels=tf.argmax(self.input_y, 1), predictions=self.predictions)
        self.fn = tf.reduce_sum(tf.cast(fn, 'float'), name='fn')

    with tf.name_scope('recall'):
        self.recall = self.num_correct / (self.num_correct + self.fn)

    with tf.name_scope('precision'):
        self.precision = self.num_correct / (self.num_correct + self.fp)

    with tf.name_scope('F1'):
        self.F1 = (2 * self.precision * self.recall) / (self.precision + self.recall)

    with tf.name_scope('merged_summary'):
        tf.summary.scalar("loss", self.loss)
        tf.summary.scalar("accuracy", self.accuracy)
        tf.summary.scalar("recall", self.recall)
        tf.summary.scalar("precision", self.precision)
        tf.summary.scalar("f-measure", self.F1)
        self.merged_summary = tf.summary.merge_all()

然后,在火车部分,我为 Tensorboard 创建保护程序:

summary_writer = tf.summary.FileWriter(logs_path, graph=tf.get_default_graph())

最后,训练保存指标如下:

for train_batch in train_batches:
            x_train_batch, y_train_batch = zip(*train_batch)
            train_step(x_train_batch, y_train_batch)
            current_step = tf.train.global_step(sess, global_step)

            # Evaluate the model with x_dev and y_dev
            if current_step % params['evaluate_every'] == 0:
                dev_batches = data_helper.batch_iter(list(zip(x_dev, y_dev)), params['batch_size'], 1)

                total_dev_correct = 0
                for dev_batch in dev_batches:
                    x_dev_batch, y_dev_batch = zip(*dev_batch)
                    acc, loss, num_dev_correct, predictions, recall, precision, f1, summary = dev_step(x_dev_batch, y_dev_batch)
                    total_dev_correct += num_dev_correct
                accuracy = float(total_dev_correct) / len(y_dev)
                logging.info('Accuracy on dev set: '.format(accuracy))
                # added loss
                logging.info('Loss on dev set: '.format(loss))
                # adding more measures
                logging.info('Recall on dev set: '.format(recall))
                logging.info('Precision on dev set: '.format(precision))
                logging.info('F1 on dev set: '.format(f1))
                summary_writer.add_summary(summary, current_step)

                if accuracy >= best_accuracy:
                    best_accuracy, best_loss, best_at_step, best_recall, best_precision, best_f1 = accuracy, loss, current_step, recall, precision, f1
                    path = saver.save(sess, checkpoint_prefix, global_step=current_step)
                    logging.critical('Saved model  at step '.format(path, best_at_step))
                    logging.critical('Best accuracy  at step '.format(best_accuracy, best_at_step))
                    logging.critical('Best loss  at step '.format(best_loss, best_at_step))
                    logging.critical('Best recall  at step '.format(best_recall, best_at_step))
                    logging.critical('Best precision  at step '.format(best_precision, best_at_step))
                    logging.critical('Best F1  at step '.format(best_f1, best_at_step))
        logging.critical('Training is complete, testing the best model on x_test and y_test')

dev_step 和 train_step 如下所示:

def train_step(x_batch, y_batch):
            feed_dict = 
                cnn_rnn.input_x: x_batch,
                cnn_rnn.input_y: y_batch,
                cnn_rnn.dropout_keep_prob: params['dropout_keep_prob'],
                cnn_rnn.batch_size: len(x_batch),
                cnn_rnn.pad: np.zeros([len(x_batch), 1, params['embedding_dim'], 1]),
                cnn_rnn.real_len: real_len(x_batch),
            
            _, step, loss, accuracy = sess.run([train_op, global_step, cnn_rnn.loss, cnn_rnn.accuracy], feed_dict)

        def dev_step(x_batch, y_batch):
            feed_dict = 
                cnn_rnn.input_x: x_batch,
                cnn_rnn.input_y: y_batch,
                cnn_rnn.dropout_keep_prob: 1.0,
                cnn_rnn.batch_size: len(x_batch),
                cnn_rnn.pad: np.zeros([len(x_batch), 1, params['embedding_dim'], 1]),
                cnn_rnn.real_len: real_len(x_batch),
            
            step, loss, accuracy, num_correct, predictions, recall, precision, f1, summary = sess.run(
                [global_step, cnn_rnn.loss, cnn_rnn.accuracy, cnn_rnn.num_correct, cnn_rnn.predictions, cnn_rnn.recall, cnn_rnn.precision, cnn_rnn.F1, cnn_rnn.merged_summary], feed_dict)
            return accuracy, loss, num_correct, predictions, recall, precision, f1, summary

我的问题是,是否为多标签分类问题正确生成了指标,还是我应该通过混淆矩阵来这样做? 如果我应该使用混淆矩阵,我应该添加:

tf.confusion_matrix(labels=, predictions=)

在我声明指标的代码的第一部分?如果是,接下来我应该怎么做才能获得准确率和召回率。

编辑:我已经添加了这个,但是张量板上的图像只是一个黑屏。

batch_confusion = tf.confusion_matrix(labels=tf.argmax(self.input_y, 1), predictions=self.predictions, name='batch_confusion', num_classes=num_classes)
            confusion = tf.Variable(tf.zeros([num_classes, num_classes], dtype=tf.int32), name='confusion')
            confusion_image = tf.reshape(tf.cast(confusion, tf.float32), [1, num_classes, num_classes, 1])
            tf.summary.image('confusion', confusion_image)

感谢您的帮助,

【问题讨论】:

你在做什么不像多标签分类。前任。 ` tf.argmax(self.input_y, 1)` 假设每个输入只有一个标签。仅供参考 -en.wikipedia.org/wiki/Multi-label_classification 多标签是指我有多个标签,但每个实例都有一个。我想说的是,输出不是二进制的,而是从 1500 个标签中取出一个标签。 你能举一些例子来说明你在运行代码时发现的度量值吗?它们与您期望/希望看到的相比如何?您还可以在一些虚假数据上运行您的指标,看看这些公式是否是您想要的。 【参考方案1】:

多标签设置与单标签设置有很大不同,您必须定义 Positive 的含义。这是否意味着所有标签都必须是正确,或者您是否将任何 肯定视为(部分)成功?

第一种情况 -> 宏观 F1 分数(count_nonzero 中的axis=None,因为您希望 所有 标签同意它是 真正的肯定)

如果是第二种情况,那么您是否希望所有课程在衡量成功方面具有相同的权重?

是 -> F1 分数(axis=1,当您按标签比较结果时)

否 -> 加权 F1分数,权重是每个class的支持(idem for axis

从我的answer 到另一个 SO 问题:

f1s = [0, 0, 0]

y_true = tf.cast(y_true, tf.float64)
y_pred = tf.cast(y_pred, tf.float64)

for i, axis in enumerate([None, 0]):
    TP = tf.count_nonzero(y_pred * y_true, axis=axis)
    FP = tf.count_nonzero(y_pred * (y_true - 1), axis=axis)
    FN = tf.count_nonzero((y_pred - 1) * y_true, axis=axis)

    precision = TP / (TP + FP)
    recall = TP / (TP + FN)
    f1 = 2 * precision * recall / (precision + recall)

    f1s[i] = tf.reduce_mean(f1)

weights = tf.reduce_sum(y_true, axis=0)
weights /= tf.reduce_sum(weights)

f1s[2] = tf.reduce_sum(f1 * weights)

micro, macro, weighted = f1s

正确性

def tf_f1_score(y_true, y_pred):
    """Computes 3 different f1 scores, micro macro
    weighted.
    micro: f1 score accross the classes, as 1
    macro: mean of f1 scores per class
    weighted: weighted average of f1 scores per class,
            weighted from the support of each class


    Args:
        y_true (Tensor): labels, with shape (batch, num_classes)
        y_pred (Tensor): model's predictions, same shape as y_true

    Returns:
        tuple(Tensor): (micro, macro, weighted)
                    tuple of the computed f1 scores
    """

    f1s = [0, 0, 0]

    y_true = tf.cast(y_true, tf.float64)
    y_pred = tf.cast(y_pred, tf.float64)

    for i, axis in enumerate([None, 0]):
        TP = tf.count_nonzero(y_pred * y_true, axis=axis)
        FP = tf.count_nonzero(y_pred * (y_true - 1), axis=axis)
        FN = tf.count_nonzero((y_pred - 1) * y_true, axis=axis)

        precision = TP / (TP + FP)
        recall = TP / (TP + FN)
        f1 = 2 * precision * recall / (precision + recall)

        f1s[i] = tf.reduce_mean(f1)

    weights = tf.reduce_sum(y_true, axis=0)
    weights /= tf.reduce_sum(weights)

    f1s[2] = tf.reduce_sum(f1 * weights)

    micro, macro, weighted = f1s
    return micro, macro, weighted


def compare(nb, dims):
    labels = (np.random.randn(nb, dims) > 0.5).astype(int)
    predictions = (np.random.randn(nb, dims) > 0.5).astype(int)

    stime = time()
    mic = f1_score(labels, predictions, average='micro')
    mac = f1_score(labels, predictions, average='macro')
    wei = f1_score(labels, predictions, average='weighted')

    print('sklearn in :.4f:\n    micro: :.8f\n    macro: :.8f\n    weighted: :.8f'.format(
        time() - stime, mic, mac, wei
    ))

    gtime = time()
    tf.reset_default_graph()
    y_true = tf.Variable(labels)
    y_pred = tf.Variable(predictions)
    micro, macro, weighted = tf_f1_score(y_true, y_pred)
    with tf.Session() as sess:
        tf.global_variables_initializer().run(session=sess)
        stime = time()
        mic, mac, wei = sess.run([micro, macro, weighted])
        print('tensorflow in :.4f (:.4f with graph time):\n    micro: :.8f\n    macro: :.8f\n    weighted: :.8f'.format(
            time() - stime, time()-gtime,  mic, mac, wei
        ))

compare(10 ** 6, 10)

输出

>> rows: 10^6 dimensions: 10
sklearn in 2.3939:
    micro: 0.30890287
    macro: 0.30890275
    weighted: 0.30890279
tensorflow in 0.2465 (3.3246 with graph time):
    micro: 0.30890287
    macro: 0.30890275
    weighted: 0.30890279

【讨论】:

以上是关于Tensorflow Precision, Recall, F1 - 多标签分类的主要内容,如果未能解决你的问题,请参考以下文章

绘制阈值(precision_recall 曲线)matplotlib/sklearn.metrics

训练SSD后如何预测Precision、Recall和F1分数

如何在 Keras 中计算精度和召回率

在scikit的precision_recall_curve中,为啥threshold与recall和precision的维度不同?

为啥rec.area 和rec.perimeter 总是0?

precision scale