Back to Browse

Keyword Extraction in Python via RAKE (Rapid Automatic Keyword Extraction)

6.7K views
Aug 31, 2022
5:14

See a working online version of this algorithm at: https://www.simplecodingtools.com/tool/keyword This video shows how we can use an open source library called rake-nltk (which is built on the published RAKE algorithm) to extract keywords in Python. You can also view this information in my blog post about RAKE: https://www.andrewrporter.com/blog/python_keyword_extraction. Commands that I used: pip install rake-nltk python3 -c "import nltk; nltk.download('stopwords')" python3 -c "import nltk; nltk.download('punkt')" rake-nltk repo: https://github.com/csurfer/rake-nltk Published paper on RAKE: https://www.researchgate.net/publication/227988510_Automatic_Keyword_Extraction_from_Individual_Documents

Download

0 formats

No download links available.

Keyword Extraction in Python via RAKE (Rapid Automatic Keyword Extraction) | NatokHD