“akurasi untuk setiap kelas” Kode Jawaban

akurasi untuk setiap kelas

from sklearn.metrics import confusion_matrix
import numpy as np

y_true = [0, 1, 2, 2, 2]
y_pred = [0, 0, 2, 2, 1]
target_names = ['class 0', 'class 1', 'class 2']

#Get the confusion matrix
cm = confusion_matrix(y_true, y_pred)
#array([[1, 0, 0],
#   [1, 0, 0],
#   [0, 1, 2]])

#Now the normalize the diagonal entries
cm = cm.astype('float') / cm.sum(axis=1)[:, np.newaxis]
#array([[1.        , 0.        , 0.        ],
#      [1.        , 0.        , 0.        ],
#      [0.        , 0.33333333, 0.66666667]])

#The diagonal entries are the accuracies of each class
cm.diagonal()
#array([1.        , 0.        , 0.66666667])
Real Raccoon

akurasi untuk setiap kelas


from sklearn.metrics import confusion_matrix
y_true = [2, 0, 2, 2, 0, 1]
y_pred = [0, 0, 2, 2, 0, 2]
matrix = confusion_matrix(y_true, y_pred)
matrix.diagonal()/matrix.sum(axis=1)

Puzzled Puma

Jawaban yang mirip dengan “akurasi untuk setiap kelas”

Pertanyaan yang mirip dengan “akurasi untuk setiap kelas”

Lebih banyak jawaban terkait untuk “akurasi untuk setiap kelas” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya