How we built Tagger News: machine learning on a tight schedule
varianceexplained.org
How we built Tagger News: machine learning on a tight schedule
1–9 of 9 posts
Re: How we built Tagger News: machine learning on a tight schedule
#2It's worth noting for future reference that in terms of supervised learning of labels given a text document input, fasttext (https://github.com/facebookresearch/fastText) is leagues ahead of conventional approaches in both accuracy and training speed, and there is a Python interface (https://github.com/salestock/fastText.py) for use with Django/Flask (unfortunately, recent fasttext changes have broken the interface for now).
Re: How we built Tagger News: machine learning on a tight schedule
#3Link to original HN submission: https://news.ycombinator.com/item?id=14337275 It's worth noting for future reference that in terms of supervised learning of labels given a text document input, fasttext ( https://github.com/facebookresearch/fastText ) is leagues ahead of conventional approaches in both accuracy and training speed, and there is a Python interface ( https://github.com/salestock/fastText.py ) for use wit…
Re: How we built Tagger News: machine learning on a tight schedule
#4Link to original HN submission: https://news.ycombinator.com/item?id=14337275 It's worth noting for future reference that in terms of supervised learning of labels given a text document input, fasttext ( https://github.com/facebookresearch/fastText ) is leagues ahead of conventional approaches in both accuracy and training speed, and there is a Python interface ( https://github.com/salestock/fastText.py ) for use wit…
Can you suggest any unsupervised learning? I want to take a body of text associated with users and come up with keywords/topics with each user. Thanks! :)
Re: How we built Tagger News: machine learning on a tight schedule
#5Earlier quoted context omitted.
Can you suggest any unsupervised learning? I want to take a body of text associated with users and come up with keywords/topics with each user. Thanks! :)
Some fairly widely-used techniques include LSI, LDA, and word2vec or doc2vec. There a lot of different techniques out there! I'm one of the creators of Tagger News, and we used LDA with python's Gensim package. Here's a good tutorial: https://radimrehurek.com/gensim/tut2.html
Re: How we built Tagger News: machine learning on a tight schedule
#6Link to original HN submission: https://news.ycombinator.com/item?id=14337275 It's worth noting for future reference that in terms of supervised learning of labels given a text document input, fasttext ( https://github.com/facebookresearch/fastText ) is leagues ahead of conventional approaches in both accuracy and training speed, and there is a Python interface ( https://github.com/salestock/fastText.py ) for use wit…
Re: How we built Tagger News: machine learning on a tight schedule
#7Link to original HN submission: https://news.ycombinator.com/item?id=14337275 It's worth noting for future reference that in terms of supervised learning of labels given a text document input, fasttext ( https://github.com/facebookresearch/fastText ) is leagues ahead of conventional approaches in both accuracy and training speed, and there is a Python interface ( https://github.com/salestock/fastText.py ) for use wit…
How does fasttext compare to vowpal wabbit?
[1]: https://twitter.com/yoavgo/status/751178795323908096
[2]: https://nlpers.blogspot.com/2016/08/fast-easy-baseline-text-...
Re: How we built Tagger News: machine learning on a tight schedule
#8Re: How we built Tagger News: machine learning on a tight schedule
#9Link to original HN submission: https://news.ycombinator.com/item?id=14337275 It's worth noting for future reference that in terms of supervised learning of labels given a text document input, fasttext ( https://github.com/facebookresearch/fastText ) is leagues ahead of conventional approaches in both accuracy and training speed, and there is a Python interface ( https://github.com/salestock/fastText.py ) for use wit…
How does fasttext compare to vowpal wabbit?