NLP pipeline software using common workflow language
Project description
nlppln is a python package for creating NLP pipelines using Common Workflow Language (CWL). It provides steps for (generic) NLP functionality, such as tokenization, lemmatization, and part of speech tagging, and helps users to construct workflows from these steps.
A text processing step consist of a (Python) command line tool and a CWL specification to use this tool. Most tools provided by nppln wrap existing NLP functionality. The command line tools are made with Click, a Python package for creating command line interfaces.
To create a workflow, you have to write a Python script:
from nlppln import WorkflowGenerator with WorkflowGenerator() as wf: txt_dir = wf.add_inputs(txt_dir='Directory') frogout = wf.frog_dir(in_dir=txt_dir) saf = wf.frog_to_saf(in_files=frogout) ner_stats = wf.save_ner_data(in_files=saf) new_saf = wf.replace_ner(metadata=ner_stats, in_files=saf) txt = wf.saf_to_txt(in_files=new_saf) wf.add_outputs(ner_stats=ner_stats, txt=txt) wf.save('anonymize.cwl')
The resulting workflow can be run using a CWL runner, such as cwltool:
cwltool anonymize.cwl --txt_dir /path/to/directory/with/txt/files/
For creating new (e.g., project specific) NLP functionality, you can use nlppln-gen to generate boilerplate (i.e., empty) command line tools and CWL specifications.
The full documentation can be found on Read the Docs.
Installation
Install nlppln using pip:
pip install nlppln
Please check the installation guidelines for additional required software.
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
File details
Details for the file nlppln-0.3.1.tar.gz
.
File metadata
- Download URL: nlppln-0.3.1.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56c4970a39e2f6e3c82fb7d2946002e3651e7648fb05c35a64ffeac3a377e442 |
|
MD5 | baea6b682fb7f982dbc9a026eba37b53 |
|
BLAKE2b-256 | 3ec141d76b58de81ab39a3d26f52bc54c9c13bfb982d1b63ef0949b0f4cde96e |