liamdm / FlowTransformer

GNU Affero General Public License v3.0
60 stars 11 forks source link

multiclassification issue #8

Open shenzhengbi opened 1 month ago

shenzhengbi commented 1 month ago

How to convert a binary classification to a multiclassification problem?

amithvarma703 commented 1 month ago

One-vs-rest (OvR for short, also referred to as One-vs-All or OvA) is a heuristic method for using binary classification algorithms for multi-class classification. It involves splitting the multi-class dataset into multiple binary classification problems

JL-418 commented 1 month ago

Hello, if I understood correctly, the results provided in the research paper for the NF-UNSW-NB15-v2 dataset are for binary classification. If so, do you have F1 score values for multi-class classification on this dataset? Thank you.

shenzhengbi commented 1 month ago

One-vs-rest (OvR for short, also referred to as One-vs-All or OvA) is a heuristic method for using binary classification algorithms for multi-class classification. It involves splitting the multi-class dataset into multiple binary classification problems

How to change in this code