edsnlp.pipelines.ner.covid.factory
create_component(nlp, name='eds.covid', attr='LOWER', ignore_excluded=False, ignore_space_tokens=False)
Create a factory that returns new GenericMatcher with patterns for covid
PARAMETER | DESCRIPTION |
---|---|
nlp |
spaCy
TYPE:
|
name |
The name of the pipe
TYPE:
|
attr |
Attribute to match on, eg
TYPE:
|
ignore_excluded |
Whether to skip excluded tokens during matching.
TYPE:
|
ignore_space_tokens |
Whether to skip space tokens during matching.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
GenericMatcher
|
Source code in edsnlp/pipelines/ner/covid/factory.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
|