Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Latest commit

 

History

History
61 lines (44 loc) · 1.9 KB

File metadata and controls

61 lines (44 loc) · 1.9 KB

Clarity.POSTagger

Description

Simple task that runs spaCy's Part of Speech Tagger. Should not be ran on large data sets, as will result in a lot of data generation.

Example

Clarity.POSTagger({
  documentset: [FDANotes]
});

Extends

base_task

Arguments

Name Type Required Notes

termset documentset cohort

termset documentset cohort

No No No

Results

Name Type Notes
sentence str
term str Token being evaluated
text str Same as term
lemma str Lemma of term
pos str POS tag. See list here.
tag str extended part-of-speech tag
dep str dependency label
shape str Token shape
is_alpha bool Is token all alphabetic
is_stop bool Is token a stop word
description str Tag description

Collector

No