Named Entity Recognition: Difference between revisions

From FDHwiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
== Discussion of the State of the Art ==
== Discussion of the State of the Art ==
Implementations of Named Entity Recognizer relied for a long time on algorithms based on statistical models like the Hidden Markov Model (HMM) <ref>https://dl.acm.org/citation.cfm?id=1119204</ref><ref>https://dl.acm.org/citation.cfm?id=1118965</ref> and the Conditional Random Field (CRF) <ref>https://dl.acm.org/citation.cfm?id=1119206</ref><ref>https://dl.acm.org/citation.cfm?id=1567618</ref>.
Implementations of Named Entity Recognizer relied for a long time on algorithms based on statistical models like the Hidden Markov Model (HMM) <ref>https://dl.acm.org/citation.cfm?id=1119204</ref><ref>https://dl.acm.org/citation.cfm?id=1118965</ref> and the Conditional Random Fields (CRFs) <ref>https://dl.acm.org/citation.cfm?id=1119206</ref><ref>https://dl.acm.org/citation.cfm?id=1567618</ref>.
For instance, the widely used Stanford Named Entity Recognizer <ref>https://nlp.stanford.edu/software/CRF-NER.html</ref> uses CRF.
For instance, the widely used Stanford Named Entity Recognizer <ref>https://nlp.stanford.edu/software/CRF-NER.html</ref> uses CRF.
In recent years however the advancement in both GPU technology and deep learning techniques triggered the advent of architectures making use of Long Short-Term Nemory Neural Networks (LSTMNNs)<ref>http://www.aclweb.org/anthology/W/W03/W03-0426.pdf</ref>. LSTMNN are often used in conjunction with CRF and allow to obtain a performance equivalent to the older methods <ref name="a">https://arxiv.org/abs/1603.01360</ref><ref>https://arxiv.org/abs/1508.01991</ref> without the need of performing complex feature engineering <ref name="a" /><ref>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-017-1868-5</ref><ref>https://arxiv.org/pdf/1511.08308v5.pdf</ref>. LSTMNN provide a model which has become a fundamental component for major companies which prefer them over precedent approaches. <ref>https://en.wikipedia.org/wiki/Long_short-term_memory#History</ref>.
In recent years however the advancement in both GPU technology and deep learning techniques triggered the advent of architectures making use of Long Short-Term Nemory Neural Networks (LSTMNNs)<ref>http://www.aclweb.org/anthology/W/W03/W03-0426.pdf</ref>. LSTMNN are often used in conjunction with CRF and allow to obtain a performance equivalent to the older methods <ref name="a">https://arxiv.org/abs/1603.01360</ref><ref>https://arxiv.org/abs/1508.01991</ref> without the need of performing complex feature engineering <ref name="a" /><ref>https://bmcbioinformatics.biomedcentral.com/articles/10.1186/s12859-017-1868-5</ref><ref>https://arxiv.org/pdf/1511.08308v5.pdf</ref>. LSTMNN provide a model which has become a fundamental component for major companies which prefer them over precedent approaches. <ref>https://en.wikipedia.org/wiki/Long_short-term_memory#History</ref>.

Revision as of 13:10, 3 November 2017

Discussion of the State of the Art

Implementations of Named Entity Recognizer relied for a long time on algorithms based on statistical models like the Hidden Markov Model (HMM) [1][2] and the Conditional Random Fields (CRFs) [3][4]. For instance, the widely used Stanford Named Entity Recognizer [5] uses CRF. In recent years however the advancement in both GPU technology and deep learning techniques triggered the advent of architectures making use of Long Short-Term Nemory Neural Networks (LSTMNNs)[6]. LSTMNN are often used in conjunction with CRF and allow to obtain a performance equivalent to the older methods [7][8] without the need of performing complex feature engineering [7][9][10]. LSTMNN provide a model which has become a fundamental component for major companies which prefer them over precedent approaches. [11]. It is worth nothing that a recent paper [12] introduces the possibility to use Iterated Dilated Convolutional Neural Networks (ID-CNNs) in place of LSTMNN to drastically improve computation time through parallelization while keeping the same level of accuracy, which suggests ID-CNNs could be the next step in improving NER. Matters of great concern in NER as of now include training data scarcity and inter-domain generalization [13]. In order to be efficient on a language domain, Current NER systems need large labeled datasets related to that domain [14]. This training data isn’t available for all language domains, which leads to the impossibility of applying NER efficiently to them. Furthermore, if a language domain doesn’t follow strict language conventions and allows for a wide use of the language, then the model will fail to generalize due to excessive heterogeneity. Examples of such domains are Sport and Finance. This is the reason for which one of the big challenges is, as stated in [13], “adapt[ing] models learned on domains where large amounts of annotated training data are available to domains with scarce annotated data”.

Bibliography