Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zevio/pcu_nlp
NLP pipeline (spacy.io) for PCU project
https://github.com/zevio/pcu_nlp
component natural-language-processing nlp nlp-pipeline pcu pcu-nlp pipeline python spacy
Last synced: about 2 months ago
JSON representation
NLP pipeline (spacy.io) for PCU project
- Host: GitHub
- URL: https://github.com/zevio/pcu_nlp
- Owner: zevio
- License: gpl-3.0
- Created: 2018-09-10T12:05:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-28T21:41:42.000Z (about 6 years ago)
- Last Synced: 2024-11-16T17:08:56.519Z (2 months ago)
- Topics: component, natural-language-processing, nlp, nlp-pipeline, pcu, pcu-nlp, pipeline, python, spacy
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pcu_nlp
NLP pipeline component (spacy.io) for PCU project
Based on [spacy.io][spacy].
![nlp](https://framapic.org/fObUllpVg2OZ/z9rmAB4EyInK.png)
----
[Check PCU project][pcu].
[spacy]: https://spacy.io
[pcu]: https://github.com/zevio/pcu_core## Installation
To install requirements, go to pcu_nlp/ 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-nlp`
Then, add this import line at the beginning of your Python file :
`from pcu_nlp import pcu_nlp`
You can now use pcu_nlp's functions, for example :
`pcu_nlp.spacyPipeline(text)`
## Test
To test your installation, go to pcu_nlp/ directory and execute the Makefile with the following command line :
`make test`