我有三个分类器用这些结果对相同的数据集进行分类:
classifier A:
precision recall f1-score
micro avg 0.36 0.36 0.36
macro avg 0.38 0.43 0.36
weighted avg 0.36 0.36 0.32
classifier B:
precision recall f1-score
micro avg 0.55 0.55 0.55
macro avg 0.60 0.60 0.56
weighted avg 0.61 0.55 0.53
classifier C:
precision recall f1-score
micro avg 0.34 0.34 0.34
macro avg 0.36 0.38 0.32
weighted avg 0.39 0.34 0.32
我想要两个选择其中最好的两个,我知道 F1-score 是比较分类器的参数,因为它在精度和召回率之间保持协调。因此,首先我选择分类器 B 以获得最佳 F1 分数。接下来,A和C都有相同的F1-measure,我想问我如何在它们之间进行选择?