Closed yangzhao1230 closed 6 months ago
Hi, we report the single-class metrics in addition to the MCC, and we return them all together as a list. The MCC itself is not affected by this. We show the additional metrics in the supplement.
Thank you for your quick response.
I checked the code again and found that you average all the metrics only during the validation stage.
val_metric = np.mean(val_metric)
.
I initially thought you were reporting this average metric as the result in the paper.
I noticed that in the code, MCC is calculated and then combined with precision and recall for each class into a single list. Could you please explain the rationale behind this approach?