“Drukuj etykiety na conmusion_matrix” Kod odpowiedzi

Drukuj etykiety na conmusion_matrix

unique_label = np.unique([y_true, y_pred])
cmtx = pd.DataFrame(
    confusion_matrix(y_true, y_pred, labels=unique_label), 
    index=['true:{:}'.format(x) for x in unique_label], 
    columns=['pred:{:}'.format(x) for x in unique_label]
)
print(cmtx)
# Output:
#           pred:no  pred:yes
# true:no         3         0
# true:yes        2         1
Xerothermic Xenomorph

Drukuj etykiety na conmusion_matrix

import pandas as pd
cmtx = pd.DataFrame(
    confusion_matrix(y_true, y_pred, labels=['yes', 'no']), 
    index=['true:yes', 'true:no'], 
    columns=['pred:yes', 'pred:no']
)
print(cmtx)
# Output:
#           pred:yes  pred:no
# true:yes         1        2
# true:no          0        3
Xerothermic Xenomorph

Odpowiedzi podobne do “Drukuj etykiety na conmusion_matrix”

Pytania podobne do “Drukuj etykiety na conmusion_matrix”

Więcej pokrewnych odpowiedzi na “Drukuj etykiety na conmusion_matrix” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu