NER
Named Entity Recognition
Overview
Named Entity Recognition is the task of locating and classifying named entities mentioned in text.
In this project we were provided with a dataset and we were not allowed to use contextualized word embeddings (ELMo, etc.) and transformers-based (BERT, BART, RoBERTa, etc.) architectures.
My proposed solution made use of the “glove-wiki-gigaword-5” pre-trained word embedding and a Bidirectional long-short term memory (BiLSTM) architecture with a custom random field (CRF) on top.