Skip to content

luisfredgs/LSA-Text-Summarization

Repository files navigation

This code implements the summarization of text documents using Latent Semantic Analysis. For a good starting point to the LSA models in summarization, check this paper and this one.

Running this code

Firstly, It is necessary to download 'punkts' and 'stopwords' from nltk data. For that, run the code:

import nltk
nltk.download("punkt", quiet=True)
nltk.download("stopwords", quiet=True)

Further, run python summarization.py

Requirements

  • Python 3.x
  • numpy
  • NLTK

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages