Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zevio/pcu_keyphrase
Keyphrase extraction algorithm (kleis) for PCU project
https://github.com/zevio/pcu_keyphrase
algorithm component extraction keyphrase keyphrase-extraction keyphrase-extraction-algorithm kleis pcu pcu-keyphrase python
Last synced: about 2 months ago
JSON representation
Keyphrase extraction algorithm (kleis) for PCU project
- Host: GitHub
- URL: https://github.com/zevio/pcu_keyphrase
- Owner: zevio
- License: gpl-3.0
- Created: 2018-09-10T12:06:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-04T05:25:17.000Z (almost 6 years ago)
- Last Synced: 2024-04-28T01:07:59.149Z (8 months ago)
- Topics: algorithm, component, extraction, keyphrase, keyphrase-extraction, keyphrase-extraction-algorithm, kleis, pcu, pcu-keyphrase, python
- Language: Python
- Size: 22.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pcu_keyphrase (Keyphrase extraction for PCU project)
Keyphrase extraction component (kleis) for PCU project.
From a text, extract its keyphrases.Based on the keyphrase extraction algorithm [kleis][kleis].
![keyphrase](https://framapic.org/mEJuLct7M2MD/Ks9ztUt8pqO3.png)
----
[Check PCU project][pcu].
[pcu]: https://github.com/zevio/pcu_core
[kleis]: https://github.com/sdhdez/kleis-keyphrase-extraction## Installation
To install requirements, go to pcu_keyphrase/ directory and execute the Makefile with the following command line :
`make init`
## Usage in another project
If you wish to import this module in another Python project, please install it :
`pip install pcu-keyphrase`
Then, add this import line at the beginning of your Python file :
`from pcu_keyphrase import pcu_keyphrase`
You can now use pcu_keyphrase's functions, for example :
`pcu_keyphrase.extractKeyphrases(text)`
## Test
To test your installation, go to pcu_keyphrase/ directory and execute the Makefile with the following command line :
`make test`