edsnlp.pipelines.ner.adicap.factory
create_component(nlp, name='eds.adicap', pattern=base_code, prefix=adicap_prefix, window=500, attr='TEXT')
Create a new component to recognize and normalize ADICAP codes in documents.
PARAMETER | DESCRIPTION |
---|---|
nlp |
spaCy
TYPE:
|
name |
The name of the pipe
TYPE:
|
pattern |
The regex pattern to use for matching ADICAP codes
TYPE:
|
prefix |
The regex pattern to use for matching the prefix before ADICAP codes
TYPE:
|
window |
Number of tokens to look for prefix. It will never go further the start of the sentence
TYPE:
|
attr |
Attribute to match on, eg
TYPE:
|
Source code in edsnlp/pipelines/ner/adicap/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 |
|