edsnlp.pipelines.base
BaseComponent
Bases: object
The BaseComponent
adds a set_extensions
method,
called at the creation of the object.
It helps decouple the initialisation of the pipeline from the creation of extensions, and is particularly usefull when distributing EDSNLP on a cluster, since the serialisation mechanism imposes that the extensions be reset.
Source code in edsnlp/pipelines/base.py
6 7 8 9 10 11 12 13 14 15 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 57 58 59 60 61 62 63 64 |
|
set_extensions()
Set Doc
, Span
and Token
extensions.
Source code in edsnlp/pipelines/base.py
22 23 24 25 26 27 |
|
_boundaries(doc, terminations=None)
Create sub sentences based sentences and terminations found in text.
PARAMETER | DESCRIPTION |
---|---|
doc |
spaCy Doc object
TYPE:
|
terminations |
List of tuples with (match_id, start, end)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
boundaries
|
List of tuples with (start, end) of spans |
Source code in edsnlp/pipelines/base.py
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 |
|