Multi label text classification

Hi there, I’m fairly new at TextBlock, and was wondering how to load multi-label data to DataBlock from a csv file as below. Please, any advice will be appreciated.

You may need to use the MultiCategoryBlock as shown here

basically a single column which contains space delimited labels
MultiCategoryBlock will one-hot encode the labels.

or do as done here Multi label text classification
and build your own vocab

1 Like

Hi! I am working on almost the same question. Did you figure out how to apply the learner on the test file?

1 Like

it helped in my case! thanks!