猿问

如何矢量化准确度度量计算?

[0, 1, 1, ...]我正在为某些给定的真值标签(例如)和概率(例如)编写自己的准确性函数(正确预测数/总预测数)[[0.8, 0.2], [0.3, 0.7], [0.1, 0.9] ...]。我不想使用诸如 sklearn 之类的库函数accuracy_score()。


我使用 for 循环创建了这个版本:


def compute_accuracy(truth_labels, probs):

    total = 0

    total_correct = 0

    for index, prob in enumerate(probs):

        predicted_label = 0 if prob[0] > 0.5 else 1

        if predicted_label == truth_labels[index]:

            total_correct += 1

        total += 1

    if total:

        return total_correct / total

    else:

        return -1

我现在希望通过矢量化来提高效率。我的目标是检查概率 > 0.5 是否与真值标签匹配:


import numpy as np


def compute_accuracy(truth_labels, probs):

    return ((np.array(probs[:][value_of_truth_labels_at_same_index]) > 0.5).astype(int) == np.array(truth_labels)).mean()

此时我不知道如何退出value_of_truth_labels_at_same_index而不返回 for 循环。


月关宝盒
浏览 103回答 1
1回答

胡说叔叔

import numpy as npN = 10X = np.random.randint(0,2,(N,))p = np.random.random((N,2))acc = np.mean(np.argmax(p, axis=1) == X)*100print(f'Accuracy: {acc}%')
随时随地看视频慕课网APP

相关分类

Python
我要回答