If I want to training to classify Normal, LUAD, LUSC, do I need to set the training mode to '1_sigmoid'?
In the abstract of the paper. It states that average area under the curve (AUC) of 0.97 for classifying Normal, LUAD, LUSC. I want to know how you calculate AUC for multi-classification task, as I know AUC is for binary classification.
Is it like that calculate for following three AUC and average them?
(1) Normal vs LUAD and LUSC,
(2) LUAD vs Normal and LUSC,
(3) LUSC vs Normal and LUAD.
Why just simply applying softmax and select max prediction score for per-tile like most of classification task. Is there any other reason for using sigmoid for each output class?
If I want to training to classify Normal, LUAD, LUSC, do I need to set the training mode to '1_sigmoid'?
In the abstract of the paper. It states that average area under the curve (AUC) of 0.97 for classifying Normal, LUAD, LUSC. I want to know how you calculate AUC for multi-classification task, as I know AUC is for binary classification. Is it like that calculate for following three AUC and average them? (1) Normal vs LUAD and LUSC, (2) LUAD vs Normal and LUSC, (3) LUSC vs Normal and LUAD.
Why just simply applying softmax and select max prediction score for per-tile like most of classification task. Is there any other reason for using sigmoid for each output class?