Natural language processing: Difference between revisions

From David's Wiki
No edit summary
Line 11: Line 11:
* Named Entity Recognition
* Named Entity Recognition
==Machine Learning==
==Machine Learning==
====Datasets and Challenges====
===Datasets and Challenges===
====SQuAD====
====SQuAD====
[https://rajpurkar.github.io/SQuAD-explorer/ Link]<br>
[https://rajpurkar.github.io/SQuAD-explorer/ Link]<br>
The Stanford Question Answering Dataset. There are two version of this dataset, 1.1 and 2.0.
The Stanford Question Answering Dataset. There are two versions of this dataset, 1.1 and 2.0.


===Transformer===
===Transformer===

Revision as of 04:07, 5 November 2019


Natural language processing (NLP)

Classical NLP

The Classical NLP consists of creating a pipeline using processors to create annotation from text files.
Below is an example of a few processors.

  • Tokenization
    • Convert a paragraph of test or a file into an array of words.
  • Part-of-speech annotation
  • Named Entity Recognition

Machine Learning

Datasets and Challenges

SQuAD

Link
The Stanford Question Answering Dataset. There are two versions of this dataset, 1.1 and 2.0.

Transformer

Attention is all you need paper
A neural network architecture by Google. It is currently the best at NLP tasks and has mostly replaced RNNs for these tasks.

Google Bert

Github Link Paper Blog Post
BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
A pretrained NLP neural network. Note the code is written in TensorFlow 1.

Libraries

Apache OpenNLP

Link