You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in case of multi-label classfication there is no way to change label column name in val.csv, and label_col parameter will be a list of label columns from labels.csv?
#284
Am I right to say that:
in case of multi-label classfication there is no way to change label field name in val.csv,
and label_col parameter will be a list of label columns from labels.csv?
The text was updated successfully, but these errors were encountered:
your val.csv must contain a single one-hot-coded label column for each label you want to classify. with 3 labels the column heads would be (for example): toxicaggressiveneutral
your labels.csv must contain a row for each label:
toxic
aggressive
neutral
your label_col parameter will then be a list of the labels: ["toxic", "aggressive", "neutral"]
Am I right to say that:
in case of multi-label classfication there is no way to change label field name in val.csv,
and label_col parameter will be a list of label columns from labels.csv?
The text was updated successfully, but these errors were encountered: