Skip to main content

Keyword extraction Python package

Project description

========================================
Yet Another Keyword Extractor (Yake)
========================================

ATTENTION
-------------

THIS VERSION IS DEPRECATED AND NO LONGER MAINTAINED.

NEW REPOSITORY
-------------

The code has been moved to https://github.com/LIAAD/yake.
Please use the code available at our repository at github.

INSTALL
-------------

pip install git+https://github.com/LIAAD/yake


DEPRECATED VERSION
------------------

Unsupervised Approach for Automatic Keyword Extraction using Text Features

* Documentation: https://pypi.python.org/pypi/yake.

Main Features
-------------

* Unsupervised approach
* Multi-Language Support
* Single document

Rationale
-------------

Extracting keywords from texts has become a challenge for individuals and organizations as the information grows in complexity and size. The need to automate this task so that texts can be processed in a timely and adequate manner has led to the emergence of automatic keyword extraction tools. Despite the advances, there is a clear lack of multilingual online tools to automatically extract keywords from single documents. Yake! is a novel feature-based system for multi-lingual keyword extraction, which supports texts of different sizes, domain or languages. Unlike other approaches, Yake! does not rely on dictionaries nor thesauri, neither is trained against any corpora. Instead, it follows an unsupervised approach which builds upon features extracted from the text, making it thus applicable to documents written in different languages without the need for further knowledge. This can be beneficial for a large number of tasks and a plethora of situations where the access to training corpora is either limited or restricted.


Please cite the following works when using YAKE
------------

Campos, R., Mangaravite, V., Pasquali, A., Jorge, A., Nunes, C., & Jatowt, A. (2018).
A Text Feature Based Automatic Keyword Extraction Method for Single Documents
Proceedings of the 40th European Conference on Information Retrieval (ECIR'18), Grenoble, France. March 26 – 29.

Campos, R., Mangaravite, V., Pasquali, A., Jorge, A., Nunes, C., & Jatowt, A. (2018).
YAKE! Collection-independent Automatic Keyword Extractor
Proceedings of the 40th European Conference on Information Retrieval (ECIR'18), Grenoble, France. March 26 – 29


Requirements
-------------
Python3


Installation
-------------

To install Yake on your terminal ::

pip install yake

To upgrade using pip::

pip install yake –upgrade

Usage
---------

How to use it on your favorite command line::

yake --input_file [text file] --language en --ngram_size 3


How to use it on Python::

import yake

text_content = """
Sources tell us that Google is acquiring Kaggle, a platform that hosts data science and machine learning
competitions. Details about the transaction remain somewhat vague , but given that Google is hosting
its Cloud Next conference in San Francisco this week, the official announcement could come as early
as tomorrow. Reached by phone, Kaggle co-founder CEO Anthony Goldbloom declined to deny that the
acquisition is happening. Google itself declined 'to comment on rumors'.
"""

# assuming default parameters
simple_kwextractor = yake.KeywordExtractor()
keywords = simple_kwextractor.extract_keywords(text_content)

for kw in keywords:
print(kw)

# specifying parameters
custom_kwextractor = yake.KeywordExtractor(lan="en", n=3, dedupLim=0.8, windowsSize=2, top=20)
keywords = custom_kwextractor.extract_keywords(text_content)

for kw in keywords:
print(kw)


Upload new version to pip
-----

Run::

> make dist
> python setup.py sdist upload -r https://upload.pypi.org/legacy/

Specify credentials at ~/.pypirc::

[distutils]
index-servers =
pypi

[pypi]
repository=https://upload.pypi.org/legacy/
username=<user>
password=<pass>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yake-0.3.7.tar.gz (53.7 kB view details)

Uploaded Source

File details

Details for the file yake-0.3.7.tar.gz.

File metadata

  • Download URL: yake-0.3.7.tar.gz
  • Upload date:
  • Size: 53.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.10.0 pkginfo/1.2.1 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/3.6.6

File hashes

Hashes for yake-0.3.7.tar.gz
Algorithm Hash digest
SHA256 b680b36db554ec6585339d025f79756c0bd2b8896f07b1de96fab1e12470aca9
MD5 b706a18cf8934273e5b18f4466bab4be
BLAKE2b-256 b63ced20047202793a08786978be68ec44c7ffbcb814ed05b985b38037f31a56

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page