Clarity.NamedEntityRecognition

Description

Simple task that runs spaCy’s NER model.

Example

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

Extends

BaseTask

Arguments

Name Type Required Notes
termset termset No  
documentset documentset No  
cohort cohort No  
sections List[str] No Limit terms to specific sections

Results

Name Type Notes
term str The original entity text.
text str Same as term
start int Index of start of entity
end int Index of end of entity
label str Label of the entity, e.g. PERSON, MONEY, DATE. See here for more
description str Description of the entity

Collector

No