Ask HN: Deep learning algorithms to aggregate technology topics from the web
A friend and I were talking about putting together a project that crowdsources cool technology topics that leveraged the latest algorithms.
I'm assuming that we should use something like Pytorch and possibly leverage the great work done by Yan Lecun.
What deep learning algorithms are recommended for this project? If you can specify a technical paper or library with sample code, that would be awesome.
2 comments
[ 3.1 ms ] story [ 17.5 ms ] threadIf you have hundreds of classes and a training dataset with about 500+ examples per class, you can also try fastText, Vowpal Wabbit or even Naive Bayes. If you want to use neural nets, there are some 1D CNNs floating around on GitHub, but they don't work all that well compared to simpler classifiers or simple dot product between vectors. Hundreds of classes usually make classifiers sluggish and accuracy is not so great compared to the binary case (spam/not spam). I wouldn't try to do that to predict the best subreddit for an article for example, because there are too many subreddits, but with vectors it's still OK.
Exactly about news classification with DL.