Natural Language Processing: Difference between revisions

From Computer Science Wiki
Line 3: Line 3:
Natural language processing (NLP) is a field of computer science, artificial intelligence and computational linguistics concerned with the interactions between computers and human (natural) languages, and, in particular, concerned with programming computers to fruitfully process large natural language corpora. <ref>https://en.wikipedia.org/wiki/Natural_language_processing</ref>
Natural language processing (NLP) is a field of computer science, artificial intelligence and computational linguistics concerned with the interactions between computers and human (natural) languages, and, in particular, concerned with programming computers to fruitfully process large natural language corpora. <ref>https://en.wikipedia.org/wiki/Natural_language_processing</ref>


== The big ideas in AI ==
== Process of parsing natural language ==


[[Natural Language Processing]]
# Text Normalization
##  Segmenting/tokenizing words from running text
##  Normalizing word formats
## Segmenting sentences in running text.


== Terms related to text normalization==  
== Terms related to text normalization==  

Revision as of 20:57, 6 September 2017

Artificial Intelligence[1]

Natural language processing (NLP) is a field of computer science, artificial intelligence and computational linguistics concerned with the interactions between computers and human (natural) languages, and, in particular, concerned with programming computers to fruitfully process large natural language corpora. [2]

Process of parsing natural language[edit]

  1. Text Normalization
    1. Segmenting/tokenizing words from running text
    2. Normalizing word formats
    3. Segmenting sentences in running text.

Terms related to text normalization[edit]

Term Definition
Text Normalization Normalizing text means converting it to a more convenient, standard form [3]
Tokenization A part of text normalization. Given a character sequence and a defined document unit, tokenization is the task of chopping it up into pieces, called tokens , perhaps at the same time throwing away certain characters, such as punctuation[4]
Lemmatization A part of text normalization. The task of determining that two words have the same root, despite their surface differences.[5]
Stemming Stemming refers to a simpler version of lemmatization in which we mainly just strip suffixes from the end of the word.[6]
Sentence segmentation breaking up a text into individual sentences, using cues like periods or exclamation points. [7]
Corpus In linguistics, a corpus (plural corpora) or text corpus is a large and structured set of texts (nowadays usually electronically stored and processed).[8]
Utterance In spoken language analysis, an utterance is the smallest unit of speech.[9]
Disfluency A speech disfluency, also spelled speech dysfluency, is any of various breaks, irregularities (within the English language, similar speech dysfluency occurs in different forms in other languages), or non-lexical vocables that occurs within the flow of otherwise fluent speech. These include false starts, i.e. words and sentences that are cut off mid-utterance, phrases that are restarted or repeated and repeated syllables, fillers i.e. grunts or non-lexical utterances such as "huh", "uh", "erm", "um", "well", "so", and "like", and repaired utterances, i.e. instances of speakers correcting their own slips of the tongue or mispronunciations (before anyone else gets a chance to).[10]
Fillers or filled pauses A part of disfluency. Words like uh and um are examples of fillers.[11]
Lemma A lemma is a set of lexical forms having the same stem, the same major part-of-speech, and the same word sense.
[12]
Word Form The word form is the full inflected or derived form of the word.[13]
Word Types Related to understanding how many words are there in a corpus. Types are the number of distinct words in a corpus[14]
Word Token Related to understanding how many words are there in a corpus. Tokens are the total number N of running words[15]

Standards[edit]

References[edit]

[[Category:Artificial Intelligence]