|
|
|
|
|
by gamapuna
3709 days ago
|
|
Slightly off topic but for anyone who is taking this course ...are the materials only related to NLP or are the techniques much more broadly applicable to other areas of deep learning (cursory look of the syllabus suggests this but would be great if someone who is actually taking this course can comment) |
|
Word vectors are "just" high dimensional entities - 100-300 dimensions, used as input. So the introduction to them was about how you go about building a dataset that is a collection of 50,000 column vectors each of which is 300 rows. And then how to use that to go on and build a neural net to do useful work.
The conclusion is that all the work done on syntax, grammar and word classification can effectively be replaced by having a huge corpus (e.g. all of wikipedia is small), 300 dimensions for each word and then a loss function to classify each word.
One can imagine how that would be applied to sales data of multiple products or other data.
It foes on to suggested how sentiment analysis is performed and how entity recognition would work (entities being places, names of people and companies).
The info has been general but described in terms of NLP, the techniques so far are not just for use in NLP.
I'm not an NLP person and tbh I've never even made a neural net (although I could if I had a reason) I'm just interested in the subject.