Named Entity Recognition
Finding names of people, organizations, date, etc in unorganized text
- One approach can be to make a massive table
- But the same word can be used in multiple contexts
- Mars: location, food item
- Process word by word, assigning a label to each
Feed Forward NER¶
Works suprizingly well, just need embeddings and some data.
But we can do better.