Extracting Features from Text Data
Last Updated on January 6, 2023 by Editorial Team
Author(s): Bala Priya C
Natural Language Processing
Part 3 of the 6 part technical series onΒ NLP
Hey everyone! π This is part 3 of the 6 part NLPΒ series;
Part 1 of the NLP series introduced basic concepts in Natural Language Processing, ideallyΒ NLP101;
Part 2 covered certain linguistic aspects, challenges in preserving semantics, understanding shallow parsing, Named Entity Recognition (NER) and introduction to languageΒ models.
In this part, we seek to cover the Bag-of-Words Model and TF-IDF vectorization of text, simple feature extraction techniques that yield numeric representation of theΒ data.π°
Understanding Bag-of-Words Model
A Bag-of-Words model (BoW), is a simple way of extracting features from text, representing documents in a corpus in numeric form asΒ vectors.
A bag-of-words is a vector representation of text that describes the occurrence of words in a document.
Why is it called a βbagβΒ ?π€
It is called a βbagβ of words, because any information about the order or contextual occurrence of words in the document is discarded.
The BoW model only takes into account whether a word occurs in the document, not where in the document. Therefore, itβs analogous to collecting all the words in all the documents across the corpus in a bagΒ π
The Bag-of-Words model requires the following:
- A vocabulary of known words present in theΒ corpus
- A measure of the presence of known words, either number of occurrences/ frequency of occurrence in the entireΒ corpus.
Each text document is represented as a numeric vector, which each dimension denoting a specific word from the corpus. Letβs take a simple example as shownΒ below.
# This is our corpus
It was the best of times,
it was the worst of times,
it was the age of wisdom,
it was the age of foolishness,
Step 1: Collect theΒ data
We have our small corpus, the first few lines from βA Tale of Two Citiesβ by Charles Dickens. Letβs consider each sentence as a document.
Step 2: Construct the vocabulary
- Construct a list of all words in the vocabulary
- Retain only the unique words and ignore case and punctuations (recall: text pre-processing)
- From the above corpus of 24 words, we now have our vocabulary of 10 wordsΒ π
- βitβ
- βwasβ
- βtheβ
- βbestβ
- βofβ
- βtimesβ
- βworstβ
- βageβ
- βwisdomβ
- βfoolishnessβ
Step 3: Create DocumentΒ Vectors
As we know the vocabulary has 10 words, we can use a fixed-length document vector of size 10, with one position in the vector to score eachΒ word.
The simplest scoring method is to mark the presence of a word as 1, if the word is present in the document, 0 otherwise
Oh yeah! thatβs simple enough; Letβs look at our document vectors now!Β π
βit was the best of timesβ = [1, 1, 1, 1, 1, 1, 0, 0, 0, 0]
βit was the worst of timesβ = [1, 1, 1, 0, 1, 1, 1, 0, 0, 0]
βit was the age of wisdomβ = [1, 1, 1, 0, 1, 0, 0, 1, 1, 0]
βit was the age of foolishnessβ = [1, 1, 1, 0, 1, 0, 0, 1, 0, 1]
Guess youβve already identified the issues with this approach! βπββοΈ
- When the size of the vocabulary is large, which is the case when weβre dealing with a larger corpus, this approach would be a bit tooΒ tedious.
- The document vectors would be of very large length, and would be predominantly sparse, and computational efficiency is clearly suboptimal.
- As order is not preserved, context and meaning are not preserved either.
- As the Bag of Words model doesnβt consider order of words, how can we account for phrases or collection of words that occur together?
Do you remember the N-grams language model from partΒ 2?π
Oh yeah, a straight forward extension of Bag-of -Words to Bag-of-N-grams helps us achieve justΒ that!
An N-gram is basically a collection of word tokens from a text document such that these tokens are contiguous and occur in a sequence. Bi-grams indicate n-grams of order 2 (two words), Tri-grams indicate n-grams of order 3 (three words), and soΒ on.
The Bag of N-Grams model is hence just an extension of the Bag of Words model so we can also leverage N-gram based features.
- This method does not take into account the relative importance of words in the text.Β π
Just because a word appears frequently, does it necessarily mean itβs importantΒ ? Well, not necessarily.
In the next section, we shall look at another metric, the TF-IDF score, which does not consider ordering of words, but aims at capturing the relative importance of words across documents in aΒ corpus.
Term Frequency- Inverse Document Frequency
Term Frequency- Inverse Document Frequency (TF-IDF Score) is a combination of two metricsβββthe Term Frequency (TF) and the Inverse Document Frequency (IDF)
The idea behind TF-IDF score which is computed using the formula described below is asΒ follows:
β If a word occurs frequently in a specific document, then itβs important whereas a word which occurs frequently across all documents in the corpus should be down-weighted to be able to get the words which are actually important.β
Hereβs another widely usedΒ formula;
The above formula helps us calculate the TF-IDF score for term i in document j and we do it for all terms in all documents in the corpus. We therefore, get the term-document matrix of shape num_terms x num_documentsΒ . Hereβs anΒ example.
Document 1: Machine learning teaches machine how to learn
Document 2: Machine translation is my favorite subject
Document 3: Term frequency and inverse document frequency is important
Step 1: Computing f_{ij}; Frequency of term i in documentΒ j
For DocumentΒ 1:
For DocumentΒ 2:
For DocumentΒ 3:
Step 2: Computing Normalized Term Frequency
As shown in the above formula, the f_{ij} obtained above should be divided by the total number of words in document jΒ .
Step 3: Compute Inverse Document Frequency (IDF) score for eachΒ term
Step 4: Obtain the TF-IDFΒ Scores
Now that weβve calculated TF_{ij} and IDF_{ij}, letβs go ahead and multiply them to get the weights w_{ij} (TF-IDF_{ij}).
Starting with raw text data, weβve successfully represented the documents in numeric form. Oh yeah! We didΒ it!π
Now that we know to build numeric features from text data, as a next step, we can use these numeric representations to understand tutorials on understanding document similarity, similarity based clustering of documents in a corpus and generating topic models that are representative of latent topics in a large textΒ corpus.
So far, weβve looked at traditional methods in Natural language Processing. In the next part, we shall take baby steps into the realm of Deep learning forΒ NLP.β¨
Happy learning! Until next timeΒ π
References
Hereβs the link to the recording of theΒ webinar.
Extracting Features from Text Data was originally published in Towards AI on Medium, where people are continuing the conversation by highlighting and responding to this story.
Published via Towards AI