kex


Namekex JSON
Version 2.0.6 PyPI version JSON
download
home_pagehttps://github.com/asahi417/kex
SummaryLight/easy keyword extraction from documents.
upload_time2023-06-08 15:51:16
maintainer
docs_urlNone
authorAsahi Ushio
requires_python>=3.6
licenseMIT
keywords keyword-extraction nlp information-retrieval
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![license](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/asahi417/kex/blob/master/LICENSE)
[![PyPI version](https://badge.fury.io/py/kex.svg)](https://badge.fury.io/py/kex)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/kex.svg)](https://pypi.python.org/pypi/kex/)
[![PyPI status](https://img.shields.io/pypi/status/kex.svg)](https://pypi.python.org/pypi/kex/)


# KEX
*Kex* is a python library for unsurpervised keyword extractions, supporting the following features: 
- [Easy interface for keyword extraction with a variety of algorithms](https://github.com/asahi417/kex#extract-keywords-with-kex)
- [Quick benchmarking over 15 English public datasets](https://github.com/asahi417/kex#benchmark-on-15-public-datasets)
- [Custom keyword extractor implementation support](https://github.com/asahi417/kex#implement-custom-extractor-with-kex)

***Our paper got accepted by EMNLP 2021 main conference 🎉*** (camera-ready is [here](https://github.com/asahi417/kex/blob/master/asset/EMNLP21_Keyword_Extraction_camera.pdf)):  
In our paper, we conducted an extensive comparison and analysis over existing keyword extraction algorithms and proposed new algorithms `LexRank` and `LexSpec` that
achieve very competitive baseline with very low complexity. Our proposed algorithms are based on the lexical specificity and we write a short introduction to the 
lexical specificity [here](./asset/lexical_specificity.md).
To reproduce all the result in the paper, please follow [these instructions](https://github.com/asahi417/kex/tree/emnlp_2021/examples/result_back_to_the_basic).

## Get Started
Install via pip
```shell script
pip install kex
```

## Extract Keywords with Kex
Built-in algorithms in *kex* is below:
- `FirstN`: heuristic baseline to pick up first n phrases as keywords 
- `TF`: scoring by term frequency
- `TFIDF`: scoring by TFIDF
- `LexSpec`: [Ushio et al., 21](https://github.com/asahi417/kex/blob/master/asset/EMNLP21_Keyword_Extraction_camera.pdf)
- `TextRank`: [Mihalcea et al., 04](https://web.eecs.umich.edu/~mihalcea/papers/mihalcea.emnlp04.pdf)
- `SingleRank`: [Wan et al., 08](https://aclanthology.info/pdf/C/C08/C08-1122.pdf)
- `TopicalPageRank`: [Liu et al.,10](http://nlp.csai.tsinghua.edu.cn/~lzy/publications/emnlp2010.pdf)
- `SingleTPR`: [Sterckx et al.,15](https://core.ac.uk/download/pdf/55828317.pdf)
- `TopicRank`: [Bougouin et al.,13](http://www.aclweb.org/anthology/I13-1062)
- `PositionRank`: [Florescu et al.,18](http://people.cs.ksu.edu/~ccaragea/papers/acl17.pdf)
- `TFIDFRank`: SingleRank + TFIDF based word distribution prior
- `LexRank`: [Ushio et al., 21](https://github.com/asahi417/kex/blob/master/asset/EMNLP21_Keyword_Extraction_camera.pdf)

Basic usage:

```python
>>> import kex
>>> model = kex.SingleRank()  # any algorithm listed above
>>> sample = '''
We propose a novel unsupervised keyphrase extraction approach that filters candidate keywords using outlier detection.
It starts by training word embeddings on the target document to capture semantic regularities among the words. It then
uses the minimum covariance determinant estimator to model the distribution of non-keyphrase word vectors, under the
assumption that these vectors come from the same distribution, indicative of their irrelevance to the semantics
expressed by the dimensions of the learned vector representation. Candidate keyphrases only consist of words that are
detected as outliers of this dominant distribution. Empirical results show that our approach outperforms state
of-the-art and recent unsupervised keyphrase extraction methods.
'''
>>> model.get_keywords(sample, n_keywords=2)
[{'stemmed': 'non-keyphras word vector',
  'pos': 'ADJ NOUN NOUN',
  'raw': ['non-keyphrase word vectors'],
  'offset': [[47, 49]],
  'count': 1,
  'score': 0.06874471825637762,
  'n_source_tokens': 112},
 {'stemmed': 'semant regular word',
  'pos': 'ADJ NOUN NOUN',
  'raw': ['semantic regularities words'],
  'offset': [[28, 32]],
  'count': 1,
  'score': 0.06001468574146248,
  'n_source_tokens': 112}]
```

### Compute a statistical prior
Algorithms such as `TF`, `TFIDF`, `TFIDFRank`, `LexSpec`, `LexRank`, `TopicalPageRank`, and `SingleTPR` need to compute
a prior distribution beforehand by
```python
>>> import kex
>>> model = kex.SingleTPR()
>>> test_sentences = ['documentA', 'documentB', 'documentC']
>>> model.train(test_sentences, export_directory='./tmp')
``` 

Priors are cached and can be loaded on the fly as 
```python
>>> import kex
>>> model = kex.SingleTPR()
>>> model.load('./tmp')
```

### Supported language
Currently algorithms are available only in English, but soon we will relax the constrain to allow other language to be supported.

## Benchmark on 15 Public Datasets
Users can fetch 15 public keyword extraction datasets via [`kex.get_benchmark_dataset`](https://github.com/asahi417/kex/blob/master/kex/_get_dataset.py#L41).

```python
>>> import kex
>>> json_line, language = kex.get_benchmark_dataset('Inspec')
>>> json_line[0]
{
    'keywords': ['kind infer', 'type check', 'overload', 'nonstrict pure function program languag', ...],
    'source': 'A static semantics for Haskell\nThis paper gives a static semantics for Haskell 98, a non-strict ...',
    'id': '1053.txt'
}
```
 
Please take a look an [example script](https://github.com/asahi417/kex/blob/emnlp_2021/examples/result_back_to_the_basic/benchmark.py) to run a benchmark on those datasets.

## Implement Custom Extractor with Kex
We provide an API to run a basic pipeline for preprocessing, by which one can implement a custom keyword extractor.

```python
import kex

class CustomExtractor:
    """ Custom keyword extractor example: First N keywords extractor """

    def __init__(self, maximum_word_number: int = 3):
        """ First N keywords extractor """
        self.phrase_constructor = kex.PhraseConstructor(maximum_word_number=maximum_word_number)

    def get_keywords(self, document: str, n_keywords: int = 10):
        """ Get keywords

         Parameter
        ------------------
        document: str
        n_keywords: int

         Return
        ------------------
        a list of dictionary consisting of 'stemmed', 'pos', 'raw', 'offset', 'count'.
        eg) {'stemmed': 'grid comput', 'pos': 'ADJ NOUN', 'raw': ['grid computing'], 'offset': [[11, 12]], 'count': 1}
        """
        phrase_instance, stemmed_tokens = self.phrase_constructor.tokenize_and_stem_and_phrase(document)
        sorted_phrases = sorted(phrase_instance.values(), key=lambda x: x['offset'][0][0])
        return sorted_phrases[:min(len(sorted_phrases), n_keywords)]
```

## Reference paper
If you use any of these resources, please cite the following paper:
```
@inproceedings{ushio-etal-2021-kex,
    title={{B}ack to the {B}asics: {A} {Q}uantitative {A}nalysis of {S}tatistical and {G}raph-{B}ased {T}erm {W}eighting {S}chemes for {K}eyword {E}xtraction},
    author={Ushio, Asahi and Liberatore, Federico and Camacho-Collados, Jose},
        booktitle={Proceedings of the {EMNLP} 2021 Main Conference},
    year = {2021},
    publisher={Association for Computational Linguistics}
}
```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/asahi417/kex",
    "name": "kex",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "keyword-extraction,nlp,information-retrieval",
    "author": "Asahi Ushio",
    "author_email": "asahi1992ushio@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e8/db/3d019b1d1295897c1f88e12e4496426c6b49d2a12acae516db28dd005265/kex-2.0.6.tar.gz",
    "platform": null,
    "description": "[![license](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/asahi417/kex/blob/master/LICENSE)\n[![PyPI version](https://badge.fury.io/py/kex.svg)](https://badge.fury.io/py/kex)\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/kex.svg)](https://pypi.python.org/pypi/kex/)\n[![PyPI status](https://img.shields.io/pypi/status/kex.svg)](https://pypi.python.org/pypi/kex/)\n\n\n# KEX\n*Kex* is a python library for unsurpervised keyword extractions, supporting the following features: \n- [Easy interface for keyword extraction with a variety of algorithms](https://github.com/asahi417/kex#extract-keywords-with-kex)\n- [Quick benchmarking over 15 English public datasets](https://github.com/asahi417/kex#benchmark-on-15-public-datasets)\n- [Custom keyword extractor implementation support](https://github.com/asahi417/kex#implement-custom-extractor-with-kex)\n\n***Our paper got accepted by EMNLP 2021 main conference \ud83c\udf89*** (camera-ready is [here](https://github.com/asahi417/kex/blob/master/asset/EMNLP21_Keyword_Extraction_camera.pdf)):  \nIn our paper, we conducted an extensive comparison and analysis over existing keyword extraction algorithms and proposed new algorithms `LexRank` and `LexSpec` that\nachieve very competitive baseline with very low complexity. Our proposed algorithms are based on the lexical specificity and we write a short introduction to the \nlexical specificity [here](./asset/lexical_specificity.md).\nTo reproduce all the result in the paper, please follow [these instructions](https://github.com/asahi417/kex/tree/emnlp_2021/examples/result_back_to_the_basic).\n\n## Get Started\nInstall via pip\n```shell script\npip install kex\n```\n\n## Extract Keywords with Kex\nBuilt-in algorithms in *kex* is below:\n- `FirstN`: heuristic baseline to pick up first n phrases as keywords \n- `TF`: scoring by term frequency\n- `TFIDF`: scoring by TFIDF\n- `LexSpec`: [Ushio et al., 21](https://github.com/asahi417/kex/blob/master/asset/EMNLP21_Keyword_Extraction_camera.pdf)\n- `TextRank`: [Mihalcea et al., 04](https://web.eecs.umich.edu/~mihalcea/papers/mihalcea.emnlp04.pdf)\n- `SingleRank`: [Wan et al., 08](https://aclanthology.info/pdf/C/C08/C08-1122.pdf)\n- `TopicalPageRank`: [Liu et al.,10](http://nlp.csai.tsinghua.edu.cn/~lzy/publications/emnlp2010.pdf)\n- `SingleTPR`: [Sterckx et al.,15](https://core.ac.uk/download/pdf/55828317.pdf)\n- `TopicRank`: [Bougouin et al.,13](http://www.aclweb.org/anthology/I13-1062)\n- `PositionRank`: [Florescu et al.,18](http://people.cs.ksu.edu/~ccaragea/papers/acl17.pdf)\n- `TFIDFRank`: SingleRank + TFIDF based word distribution prior\n- `LexRank`: [Ushio et al., 21](https://github.com/asahi417/kex/blob/master/asset/EMNLP21_Keyword_Extraction_camera.pdf)\n\nBasic usage:\n\n```python\n>>> import kex\n>>> model = kex.SingleRank()  # any algorithm listed above\n>>> sample = '''\nWe propose a novel unsupervised keyphrase extraction approach that filters candidate keywords using outlier detection.\nIt starts by training word embeddings on the target document to capture semantic regularities among the words. It then\nuses the minimum covariance determinant estimator to model the distribution of non-keyphrase word vectors, under the\nassumption that these vectors come from the same distribution, indicative of their irrelevance to the semantics\nexpressed by the dimensions of the learned vector representation. Candidate keyphrases only consist of words that are\ndetected as outliers of this dominant distribution. Empirical results show that our approach outperforms state\nof-the-art and recent unsupervised keyphrase extraction methods.\n'''\n>>> model.get_keywords(sample, n_keywords=2)\n[{'stemmed': 'non-keyphras word vector',\n  'pos': 'ADJ NOUN NOUN',\n  'raw': ['non-keyphrase word vectors'],\n  'offset': [[47, 49]],\n  'count': 1,\n  'score': 0.06874471825637762,\n  'n_source_tokens': 112},\n {'stemmed': 'semant regular word',\n  'pos': 'ADJ NOUN NOUN',\n  'raw': ['semantic regularities words'],\n  'offset': [[28, 32]],\n  'count': 1,\n  'score': 0.06001468574146248,\n  'n_source_tokens': 112}]\n```\n\n### Compute a statistical prior\nAlgorithms such as `TF`, `TFIDF`, `TFIDFRank`, `LexSpec`, `LexRank`, `TopicalPageRank`, and `SingleTPR` need to compute\na prior distribution beforehand by\n```python\n>>> import kex\n>>> model = kex.SingleTPR()\n>>> test_sentences = ['documentA', 'documentB', 'documentC']\n>>> model.train(test_sentences, export_directory='./tmp')\n``` \n\nPriors are cached and can be loaded on the fly as \n```python\n>>> import kex\n>>> model = kex.SingleTPR()\n>>> model.load('./tmp')\n```\n\n### Supported language\nCurrently algorithms are available only in English, but soon we will relax the constrain to allow other language to be supported.\n\n## Benchmark on 15 Public Datasets\nUsers can fetch 15 public keyword extraction datasets via [`kex.get_benchmark_dataset`](https://github.com/asahi417/kex/blob/master/kex/_get_dataset.py#L41).\n\n```python\n>>> import kex\n>>> json_line, language = kex.get_benchmark_dataset('Inspec')\n>>> json_line[0]\n{\n    'keywords': ['kind infer', 'type check', 'overload', 'nonstrict pure function program languag', ...],\n    'source': 'A static semantics for Haskell\\nThis paper gives a static semantics for Haskell 98, a non-strict ...',\n    'id': '1053.txt'\n}\n```\n \nPlease take a look an [example script](https://github.com/asahi417/kex/blob/emnlp_2021/examples/result_back_to_the_basic/benchmark.py) to run a benchmark on those datasets.\n\n## Implement Custom Extractor with Kex\nWe provide an API to run a basic pipeline for preprocessing, by which one can implement a custom keyword extractor.\n\n```python\nimport kex\n\nclass CustomExtractor:\n    \"\"\" Custom keyword extractor example: First N keywords extractor \"\"\"\n\n    def __init__(self, maximum_word_number: int = 3):\n        \"\"\" First N keywords extractor \"\"\"\n        self.phrase_constructor = kex.PhraseConstructor(maximum_word_number=maximum_word_number)\n\n    def get_keywords(self, document: str, n_keywords: int = 10):\n        \"\"\" Get keywords\n\n         Parameter\n        ------------------\n        document: str\n        n_keywords: int\n\n         Return\n        ------------------\n        a list of dictionary consisting of 'stemmed', 'pos', 'raw', 'offset', 'count'.\n        eg) {'stemmed': 'grid comput', 'pos': 'ADJ NOUN', 'raw': ['grid computing'], 'offset': [[11, 12]], 'count': 1}\n        \"\"\"\n        phrase_instance, stemmed_tokens = self.phrase_constructor.tokenize_and_stem_and_phrase(document)\n        sorted_phrases = sorted(phrase_instance.values(), key=lambda x: x['offset'][0][0])\n        return sorted_phrases[:min(len(sorted_phrases), n_keywords)]\n```\n\n## Reference paper\nIf you use any of these resources, please cite the following paper:\n```\n@inproceedings{ushio-etal-2021-kex,\n    title={{B}ack to the {B}asics: {A} {Q}uantitative {A}nalysis of {S}tatistical and {G}raph-{B}ased {T}erm {W}eighting {S}chemes for {K}eyword {E}xtraction},\n    author={Ushio, Asahi and Liberatore, Federico and Camacho-Collados, Jose},\n        booktitle={Proceedings of the {EMNLP} 2021 Main Conference},\n    year = {2021},\n    publisher={Association for Computational Linguistics}\n}\n```\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Light/easy keyword extraction from documents.",
    "version": "2.0.6",
    "project_urls": {
        "Download": "https://github.com/asahi417/kex/archive/v2.0.6.tar.gz",
        "Homepage": "https://github.com/asahi417/kex"
    },
    "split_keywords": [
        "keyword-extraction",
        "nlp",
        "information-retrieval"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8db3d019b1d1295897c1f88e12e4496426c6b49d2a12acae516db28dd005265",
                "md5": "178b5112586c2486ee8af783fe31030a",
                "sha256": "756e1974c687604b14cbc6a142ad6ace5eea3f815b1e1666fe61b3844fc98505"
            },
            "downloads": -1,
            "filename": "kex-2.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "178b5112586c2486ee8af783fe31030a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 19739,
            "upload_time": "2023-06-08T15:51:16",
            "upload_time_iso_8601": "2023-06-08T15:51:16.110094Z",
            "url": "https://files.pythonhosted.org/packages/e8/db/3d019b1d1295897c1f88e12e4496426c6b49d2a12acae516db28dd005265/kex-2.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-08 15:51:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "asahi417",
    "github_project": "kex",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "kex"
}
        
Elapsed time: 0.07516s