Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

summarize text or simplify text [closed]

Is there any library, preferably in python but at least open source, that can summarize and or simplify natural-language text?

like image 541
captainandcoke Avatar asked Mar 29 '11 21:03

captainandcoke


People also ask

What are the two main strategies used in text summarization?

The two broad categories of approaches to text summarization are extraction and abstraction.


1 Answers

Maybe you can try sumy. It's a quite small library that I wrote in Python. There are implemented Luhn's and Edmundson's approaches, LSA method, SumBasic, KL-Sum, LexRank and TextRank algorithms. It's Apache2 licensed and supports Czech, Slovak, English, French, Japanese, Chinese, Portuguese, Spanish and German languages.

Feel free to open an issue or send a pull request if there is something you are missing.

like image 64
Mišo Avatar answered Sep 28 '22 05:09

Mišo