GitHub - summanlp/textrank: TextRank implementation for Python 3. (original) (raw)

summa – textrank

TextRank implementation for text summarization and keyword extraction in Python 3, with optimizations on the similarity function.

Features

Examples

Text summarization:

text = """Automatic summarization is the process of reducing a text document with a
computer program in order to create a summary that retains the most important points
of the original document. As the problem of information overload has grown, and as
the quantity of data has increased, so has interest in automatic summarization.
Technologies that can make a coherent summary take into account variables such as
length, writing style and syntax. An example of the use of summarization technology
is search engines such as Google. Document summarization is another."""

from summa import summarizer print(summarizer.summarize(text)) 'Automatic summarization is the process of reducing a text document with a computer program in order to create a summary that retains the most important points of the original document.'

Keyword extraction:

from summa import keywords print(keywords.keywords(text)) document summarization writing account

Note that line breaks in the input will be used as sentence separators, so be sure to preprocess your text accordingly.

Installation

This software is available in PyPI. It depends on NumPy and Scipy, two Python libraries for scientific computing. Pip will automatically install them along with summa:

pip install summa

For a better performance of keyword extraction, install Pattern.

More examples

References

To cite this work:

@article{DBLP:journals/corr/BarriosLAW16, author = {Federico Barrios and Federico L{'{o}}pez and Luis Argerich and Rosa Wachenchauzer}, title = {Variations of the Similarity Function of TextRank for Automated Summarization}, journal = {CoRR}, volume = {abs/1602.03606}, year = {2016}, url = {http://arxiv.org/abs/1602.03606}, archivePrefix = {arXiv}, eprint = {1602.03606}, timestamp = {Wed, 07 Jun 2017 14:40:43 +0200}, biburl = {https://dblp.org/rec/bib/journals/corr/BarriosLAW16}, bibsource = {dblp computer science bibliography, https://dblp.org} }


Summa is open source software released under the The MIT License (MIT).

Copyright (c) 2014 – now Summa NLP.