I can't seem to find where the sample size is mentioned. It mentions that Quid has 50,000 company descriptions, but is n=50,000 tiny in thr ML/DeepLearning world? I do neuroscience research and where I am coming from I have maybe n=150to200 per class. And that is not generally regarded as a tiny sample.
The issue is those 50,000 descriptions aren't labeled good/bad. Someone had to pick a subset of them and label them, so my guess is they did this for maybe 100 or 200 descriptions.
How Quid uses deep learning with small data
11–20 of 49 posts
Re: How Quid uses deep learning with small data
#12Curious how you guys got training data for this. Did someone have to go through and rate whether or not a sentence was quality or not? And how many training examples did you use? You say it was "difficult to develop a large set" but I'm curious how large that set actually was. Edit: Also, do you think more data or a "better" or "more sophisticated" model would make the results better? I would guess more data would tr…
Thanks for the comment! There were a few hundred sentences of each, collected internally from from a wide number of descriptions. Yes, I'd definitely agree- more data is what we need here for further model improvements.
Basically I have simpler interfaces and the ability for multiple people to quickly answer questions like this on a set of data. Easily exportable in the end as well. If you're interested in using that to get some more data on sentences, let me know. I'm really curious how much better the results get with more data, and this could help.
[0] https://bigishdata.com/2016/11/01/classifying-country-music-...
Re: How Quid uses deep learning with small data
#13I thought the whole point of "deep learning" is its approach to using data.
Re: How Quid uses deep learning with small data
#14The baseline I'd like to see this compared to is the not-very-deep-learning "bag of tricks" that's conveniently implemented in fastText [1]. [1] https://github.com/facebookresearch/fastText
Great point! I considering using fasttext as a baseline, however in practice fasttext really didn't work well at all with the small data set, much worse than the tfidf baseline. I think Fasttext's classification approach might not work well with such a small dataset. I'm not sure but I suspect its because it tries to learn embeddings - but there just isn't anywhere near enough data for that. I'd love an outside persp…
But I'm wondering how you get around that with the neural net. In the post, you said there are only a few hundred labeled examples, right? How can a neural net with hundreds of parameters set those parameters to anything reasonable, and not overfit, when there are about as many parameters as examples?
Re: How Quid uses deep learning with small data
#15Wait, isn't "deep learning with small data" just machine learning, after all the buzzwords cancel themselves out? I thought the whole point of "deep learning" is its approach to using data.
However, picking millions of parameters with small amounts of data is unlikely to work well.
Re: How Quid uses deep learning with small data
#16Earlier quoted context omitted.
Great point! I considering using fasttext as a baseline, however in practice fasttext really didn't work well at all with the small data set, much worse than the tfidf baseline. I think Fasttext's classification approach might not work well with such a small dataset. I'm not sure but I suspect its because it tries to learn embeddings - but there just isn't anywhere near enough data for that. I'd love an outside persp…
Fair enough. That's a useful comparison to know about. But I'm wondering how you get around that with the neural net. In the post, you said there are only a few hundred labeled examples, right? How can a neural net with hundreds of parameters set those parameters to anything reasonable, and not overfit, when there are about as many parameters as examples?
Re: How Quid uses deep learning with small data
#17Wait, isn't "deep learning with small data" just machine learning, after all the buzzwords cancel themselves out? I thought the whole point of "deep learning" is its approach to using data.
The point of deep learning is using a deep graph, like a neural network with a lot of layers, not the amount of data. However, picking millions of parameters with small amounts of data is unlikely to work well.
Re: How Quid uses deep learning with small data
#18Wait, isn't "deep learning with small data" just machine learning, after all the buzzwords cancel themselves out? I thought the whole point of "deep learning" is its approach to using data.
The point of deep learning is using a deep graph, like a neural network with a lot of layers, not the amount of data. However, picking millions of parameters with small amounts of data is unlikely to work well.