Text Mining and Natural Language Processing (NLP) Fundamentals

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/21

flashcard set

Earn XP

Description and Tags

This set of flashcards covers vocabulary terms, concepts, and techniques related to text mining, natural language processing, and text analytics based on the provided lecture notes.

Last updated 10:43 PM on 4/29/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

22 Terms

1
New cards

Text mining

The process of quantifying large amounts of string/text data to extract knowledge and help inform decisions.

2
New cards

Natural Language Processing (NLP)

A field of artificial intelligence established in the 1950s that enables computers to understand and process human language.

3
New cards

Lexical ambiguity

A type of ambiguity where a word has multiple meanings, such as 'rows,' 'rose,' and 'roes.'

4
New cards

Syntactic ambiguity

A type of ambiguity involving sentence structure, such as 'We saw her duck' (referring to an animal or an action).

5
New cards

Scope ambiguity

Ambiguity concerning how many subjects are affected, illustrated by the sentence 'Every student did not pass the exam.'

6
New cards

Document

A piece of text that often serves as the level of analysis in text analytics.

7
New cards

Corpus

A collection of documents used for text analysis.

8
New cards

Token

A single word within a piece of text.

9
New cards

Vocabulary

The collection of all unique word tokens within a corpus.

10
New cards

Stemming

The process of reducing inflected words to their stem or base form by removing letters until commonalities are found (e.g., reducing 'changing' to 'chang').

11
New cards

Lemmatization

A more advanced version of word reduction that reduces inflected words to their actual root word (e.g., reducing 'changing' to 'change').

12
New cards

Stop words

Words that are filtered out prior to processing natural language data.

13
New cards

Tokenization

The process of converting words to tokens while accounting for variations like punctuation and contractions.

14
New cards

Vectorization

The process of converting words into numeric representations.

15
New cards

Word representation

Also known as word vectors, these encode word tokens into a vector in a 'word space' with enough dimensions to represent semantic relationships.

16
New cards

One hot vector

An older method of word representation where a vector the size of the vocabulary contains a single 1 for the dimension associated with the word and 0 for all others.

17
New cards

Statistical language models

A probability distribution over a set of words that predicts the next word in a sequence; the predecessor to neural models.

18
New cards

Text clustering

The application of cluster analysis to text documents, commonly using the k-means clustering technique for document organization.

19
New cards

N-gram

A unit of analysis in text mining where a 1-gram is one token.

20
New cards

Latent Dirichlet Allocation (LDA)

The most widely used technique for topic modeling.

21
New cards

Descriptive analytics

In text analytics, this includes techniques such as visualization and frequency analysis.

22
New cards

Predictive analytics

In text analytics, this includes techniques such as text classification and sentiment analysis.