serhii.net LINKS BLOG!

In the middle of the desert you can say anything you want

18 Feb 2017

SMMRY - About (Algo to summarize text)

Categories:
  • IT/CS/Algorithms
  • IT/Programming
  • People/Knowledge/Patterns
  • (show all) All categories:
  • IT
  • IT/CS
  • IT/CS/Algorithms
  • IT/Programming
  • People
  • People/Knowledge
  • People/Knowledge/Patterns

  • Tags:
  • Programming
  • Algorithms
  • Patterns
  • Algorithm

  • Rating: 6; Complexity: 6
    Title: SMMRY - About (Algo to summarize text)
    Link: http://smmry.com/about
    1. Associate words with their grammatical counterparts. (e.g. “city” and “cities”) 2) Calculate the occurrence of each word in the text. 3) Assign each word with points depending on their popularity. 4) Detect which periods represent the end of a sentence. (e.g “Mr.” does not). 5) Split up the text into individual sentences. 6) Rank sentences by the sum of their words' points. 7) Return X of the most highly ranked sentences in chronological order.