How to handle unbalanced label data using FastText?
Asked Answered
F

2

7

In FastText, I have unbalanced labels. What is the best way to handle it?

Filling answered 10/6, 2018 at 8:2 Comment(2)
This blog machinelearningmastery.com/… gives some general answers can you add some details as to the domain specifics?Subminiaturize
I dont see any satisfactory answer. is there a better resolution?Oliviero
M
2

Fasttext seems to handle unbalanced data pretty well. According to the FAQ

Note also that this loss is thought for classes that are unbalanced, that is some classes are more frequent than others.

Miliary answered 12/7, 2018 at 10:39 Comment(0)
C
1

In our case here we have a very skewed dataset with 200+ classes and 20% of the classes containing 80% of all data.

In our data, even with this highly skewed data, we have a clear definition of the texts inside our categories.

Example: Text of the Majority Class: "Hey, I need a computer and a mouse to open the internet and post a programming answer in Stack Overflow"

Text of the Minority Class: "Hey, could please give me the following items: Eggs, lettuce, onions, tomatoes, milk and wheat?"

As FastText deals with WordNGrams and hierarchical split if you have a very well defined category as my case above, the imbalance it's not a problem because of the nature of the algorithm.

Reference: Bag of Tricks for Efficient Text Classification - Armand Joulin, Edouard Grave, Piotr Bojanowski, Tomas Mikolov

Chilson answered 21/3, 2019 at 12:20 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.