NLP — Text summarization in 5 steps using NLTK: WordFrequency Algorithm

--

A quick and simple implementation in Python

Photo by Kelly Sikkema on Unsplash

Text summarization refers to the technique of shortening long pieces of text. The intention is to create a coherent and fluent summary having only the main points outlined in the document.

Automatic text summarization is a common problem in machine learning and natural language processing (NLP).

We’ll quickly jump to the business, for the implementation lovers. 😊 But you can read more about NLTK here to install in your machine. It’s easy.

NLTK has been called “a wonderful tool for teaching, and working in, computational linguistics using Python,” and “an amazing library to play with natural language.”

And don’t worry even if you don’t know what is NLTK. You will still be able to do the magic Mr Potter!

This algorithm is also implemented in a GitHub project: A small NLP SAAS project that summarizes a webpage

Side note: Beta users, signup for my new venture: https://lessentext.com

The 5 steps implementation

Perquisites Python3, NLTK library of python, Your favourite text editor or IDE

1. Create the word frequency table

we create a dictionary for the word frequency table from the text.
For this, we should only use the words that are not part of the stopWords array.

we’re applying this method on the text_string, which could be anything like a news article, a book page or an email.

The frequency table should look something like the image below:

fig: frequency table

2. Tokenize the sentences

Now, we split the text_string in a set of sentences. For this, we will use the inbuilt method from the nltk

sent_tokenize(text_string)

Following is the example of the list of the sentence from the given text.

3. Score the sentences: Term frequency

We’re using the Term Frequency method to score each sentence.

Basic Algorithm: score a sentence by its words, adding the frequency of every non-stop word in a sentence.

Notice that a potential issue with our score algorithm is that long sentences will have an advantage over short sentences.
To solve this, we’re dividing every sentence score by the number of words in the sentence.

Note that here sentence[:10] is the first 10 character of any sentence, this is to save memory overhead while saving keys of the dictionary. The dictionary would look something like below.

fig: sentences scores

4. Find the threshold

Here, we are considering the average score of the sentences as a threshold. You can use other methods to calculate the threshold.

5. Generate the summary

Basic Algorithm: Select a sentence for a summarization, If the sentence score is more than the average score.

And that’s it. let’s summarize(!) the entire algorithm 😆

For the threshold, we’ve used 1.5x of the average score. You can play with such variables to generate the summary as you like.

Test drive?

Original text:

Those Who Are Resilient Stay In The Game Longer
“On the mountains of truth you can never climb in vain: either you will reach a point higher up today, or you will be training your powers so that you will be able to climb higher tomorrow.” — Friedrich Nietzsche
Challenges and setbacks are not meant to defeat you, but promote you. However, I realise after many years of defeats, it can crush your spirit and it is easier to give up than risk further setbacks and disappointments. Have you experienced this before? To be honest, I don’t have the answers. I can’t tell you what the right course of action is; only you will know. However, it’s important not to be discouraged by failure when pursuing a goal or a dream, since failure itself means different things to different people. To a person with a Fixed Mindset failure is a blow to their self-esteem, yet to a person with a Growth Mindset, it’s an opportunity to improve and find new ways to overcome their obstacles. Same failure, yet different responses. Who is right and who is wrong? Neither. Each person has a different mindset that decides their outcome. Those who are resilient stay in the game longer and draw on their inner means to succeed.
I’ve coached many clients who gave up after many years toiling away at their respective goal or dream. It was at that point their biggest breakthrough came. Perhaps all those years of perseverance finally paid off. It was the 19th Century’s minister Henry Ward Beecher who once said: “One’s best success comes after their greatest disappointments.” No one knows what the future holds, so your only guide is whether you can endure repeated defeats and disappointments and still pursue your dream. Consider the advice from the American academic and psychologist Angela Duckworth who writes in Grit: The Power of Passion and Perseverance: “Many of us, it seems, quit what we start far too early and far too often. Even more than the effort a gritty person puts in on a single day, what matters is that they wake up the next day, and the next, ready to get on that treadmill and keep going.”I know one thing for certain: don’t settle for less than what you’re capable of, but strive for something bigger. Some of you reading this might identify with this message because it resonates with you on a deeper level. For others, at the end of their tether the message might be nothing more than a trivial pep talk. What I wish to convey irrespective of where you are in your journey is: NEVER settle for less. If you settle for less, you will receive less than you deserve and convince yourself you are justified to receive it.“Two people on a precipice over Yosemite Valley” by Nathan Shipps on Unsplash
Develop A Powerful Vision Of What You Want
“Your problem is to bridge the gap which exists between where you are now and the goal you intend to reach.” — Earl Nightingale
I recall a passage my father often used growing up in 1990s: “Don’t tell me your problems unless you’ve spent weeks trying to solve them yourself.” That advice has echoed in my mind for decades and became my motivator. Don’t leave it to other people or outside circumstances to motivate you because you will be let down every time. It must come from within you. Gnaw away at your problems until you solve them or find a solution. Problems are not stop signs, they are advising you that more work is required to overcome them. Most times, problems help you gain a skill or develop the resources to succeed later. So embrace your challenges and develop the grit to push past them instead of retreat in resignation. Where are you settling in your life right now? Could you be you playing for bigger stakes than you are? Are you willing to play bigger even if it means repeated failures and setbacks? You should ask yourself these questions to decide whether you’re willing to put yourself on the line or settle for less. And that’s fine if you’re content to receive less, as long as you’re not regretful later.
If you have not achieved the success you deserve and are considering giving up, will you regret it in a few years or decades from now? Only you can answer that, but you should carve out time to discover your motivation for pursuing your goals. It’s a fact, if you don’t know what you want you’ll get what life hands you and it may not be in your best interest, affirms author Larry Weidel: “Winners know that if you don’t figure out what you want, you’ll get whatever life hands you.” The key is to develop a powerful vision of what you want and hold that image in your mind. Nurture it daily and give it life by taking purposeful action towards it.Vision + desire + dedication + patience + daily action leads to astonishing success. Are you willing to commit to this way of life or jump ship at the first sign of failure? I’m amused when I read questions written by millennials on Quora who ask how they can become rich and famous or the next Elon Musk. Success is a fickle and long game with highs and lows. Similarly, there are no assurances even if you’re an overnight sensation, to sustain it for long, particularly if you don’t have the mental and emotional means to endure it. This means you must rely on the one true constant in your favour: your personal development. The more you grow, the more you gain in terms of financial resources, status, success — simple. If you leave it to outside conditions to dictate your circumstances, you are rolling the dice on your future.So become intentional on what you want out of life. Commit to it. Nurture your dreams. Focus on your development and if you want to give up, know what’s involved before you take the plunge. Because I assure you, someone out there right now is working harder than you, reading more books, sleeping less and sacrificing all they have to realise their dreams and it may contest with yours. Don’t leave your dreams to chance.

Summarized text:

To be honest, I don’t have the answers. Same failure, yet different responses. Neither. Don’t leave it to other people or outside circumstances to motivate you because you will be let down every time. It must come from within you. Commit to it. Nurture your dreams. Don’t leave your dreams to chance.

Well, there it is. You have just automatically summarized the text using simple math (yeah, really!)

What next?

  1. Play with it: Try to change the threshold value (1.5x to 1.3x or 1.8x) and see what comes out.
  2. Extend it: You can also extend it to summarize a text using “how many lines/sentence you want”.

Note: This is an extractive text summarization technique.

Find the full code here

Don’t forget to give us yours 👏 !

A small request: please signup for my new venture: https://lessentext.com and provide early feedback!

Before you segway…

Read the next Article in the Text Summarization series:

Text Summarization using TF-IDF

--

--