FastText is the best text classification library for a quick baseline
1–10 of 13 posts
Re: FastText is the best text classification library for a quick baseline
#2Using aligned word vectors for instant translations with Python and Rust - https://news.ycombinator.com/item?id=27465287 - June 2021 (35 comments)
FastText embeddings of field headers to improve NLP - https://news.ycombinator.com/item?id=23405965 - June 2020 (1 comment)
Fast and accurate language identification using fastText - https://news.ycombinator.com/item?id=15393518 - Oct 2017 (12 comments)
Multilingual word vectors in 78 languages - https://news.ycombinator.com/item?id=14167539 - April 2017 (23 comments)
Facebook releases 300-dimensional pretrained Fasttext vectors for 90 languages - https://news.ycombinator.com/item?id=13771292 - March 2017 (70 comments)
Fasttext and Torch: A fasttext implementation based on Torch - https://news.ycombinator.com/item?id=12862541 - Nov 2016 (1 comment)
Facebook AI Research Open Sources fastText - https://news.ycombinator.com/item?id=12329094 - Aug 2016 (5 comments)
FastText – Library for fast text representation and classification - https://news.ycombinator.com/item?id=12226988 - Aug 2016 (52 comments)
Re: FastText is the best text classification library for a quick baseline
#3Re: FastText is the best text classification library for a quick baseline
#4Re: FastText is the best text classification library for a quick baseline
#5Do owls poop from their mouth? https://interestingnewsclub.blogspot.com/2021/06/do-owls-poo...
British man stacks five M&M's, breaks Guinness World Record https://www.interestingnews.club/2021/06/british-man-stacks-...
What does the Partridge symbolize? intertesting facts https://www.interestingnews.club/2021/06/what-does-partridge...
Re: FastText is the best text classification library for a quick baseline
#6The built-in classifier to fasttext is abysmal. Putting a default XGB on the embeddings is just as easy, and once you're just using fasttext for embeddings, using a better embedding makes more sense.
Re: FastText is the best text classification library for a quick baseline
#7Re: FastText is the best text classification library for a quick baseline
#8For more text classification baselines (CRNN, NRTR, RubustScanner, SAR, SegOCR), checkout https://github.com/open-mmlab/mmocr They are reproducible, customizable.
Re: FastText is the best text classification library for a quick baseline
#9The built-in classifier to fasttext is abysmal. Putting a default XGB on the embeddings is just as easy, and once you're just using fasttext for embeddings, using a better embedding makes more sense.
Re: FastText is the best text classification library for a quick baseline
#10Some things to note: (1) FastText comes with a classifier but I have often seen good results with using a difference classifier like LightGBM or a SVM. (2) If you want other word embeddings to compare with as well, magnitude [1] is an easy to use library. (3) FastText now supports multiple languages [2].
[1] https://github.com/plasticityai/magnitude#pre-converted-magn... [2] https://fasttext.cc/docs/en/crawl-vectors.html#models