edsnlp.pipelines.ner.cim10.factory
create_component(nlp, name='eds.cim10', attr='NORM', ignore_excluded=False, ignore_space_tokens=False, term_matcher=TerminologyTermMatcher.exact, term_matcher_config={})
Create a factory that returns new a component to recognize and normalize CIM10 codes and concepts in documents.
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:
|
term_matcher |
The term matcher to use, either
TYPE:
|
term_matcher_config |
The configuration for the term matcher
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
TerminologyMatcher
|
Source code in edsnlp/pipelines/ner/cim10/factory.py
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 57 58 59 60 61 62 63 64 65 66 67 |
|